Raylib-cs.BleedingEdge
5.5.0-dev-61
See the version list below for details.
dotnet add package Raylib-cs.BleedingEdge --version 5.5.0-dev-61
NuGet\Install-Package Raylib-cs.BleedingEdge -Version 5.5.0-dev-61
<PackageReference Include="Raylib-cs.BleedingEdge" Version="5.5.0-dev-61" />
<PackageVersion Include="Raylib-cs.BleedingEdge" Version="5.5.0-dev-61" />
<PackageReference Include="Raylib-cs.BleedingEdge" />
paket add Raylib-cs.BleedingEdge --version 5.5.0-dev-61
#r "nuget: Raylib-cs.BleedingEdge, 5.5.0-dev-61"
#:package Raylib-cs.BleedingEdge@5.5.0-dev-61
#addin nuget:?package=Raylib-cs.BleedingEdge&version=5.5.0-dev-61&prerelease
#tool nuget:?package=Raylib-cs.BleedingEdge&version=5.5.0-dev-61&prerelease

Raylib-cs.BleedingEdge
C# bindings for raylib, a simple and easy-to-use library to learn videogames programming (www.raylib.com)
Raylib-cs.BleedingEdge targets .NET 8+ and uses the master branch of raylib repo
there are still no examples, you can rely on Raylib-cs examples as this binding has mostly same function signatures (see code differences)
basic example
using Raylib_cs.BleedingEdge;
using static Raylib_cs.BleedingEdge.Raylib;
const int screenWidth = 800;
const int screenHeight = 540;
InitWindow(screenWidth, screenHeight, "raylib [core] example - basic window");
while (!WindowShouldClose())
{
BeginDrawing();
ClearBackground(Color.RayWhite);
DrawText("Congrats! You created your first window!", 190, 200, 20, Color.LightGray);
EndDrawing();
}
CloseWindow();
differences from Raylib-cs
main differences
| Raylib-cs | Raylib-cs.BleedingEdge |
|---|---|
| .NET 6.0+ | .NET 8.0+ |
| Released 07-2018 | Released 08-2024 |
| raylib 5.0 | raylib 5.5-dev (master) |
code differences
Raylib-cs.BleedingEdge is a little more low-level than Raylib-cs, for example:
Raylib-cs has GetDroppedFiles, which basically does LoadDroppedFiles, copies data from resulting FilePathList
to string[] and does UnloadDroppedFiles. Raylib-cs.BleedingEdge doesn't have GetDroppedFiles,
instead of this you must do LoadDroppedFiles and UnloadDroppedFiles yourself, like in normal raylib.
* means any, e.g. *Span<T> can be Span<T> or ReadOnlySpan<T>
| Raylib-cs | Raylib-cs.BleedingEdge |
|---|---|
using Raylib-cs |
using Raylib-cs.BleedingEdge |
Texture2D |
Texture |
RenderTexture2D |
RenderTexture |
T[] for functions with pointers |
Span<T> for functions with pointers |
int argument for the length of array |
-, use Span<T>.Slice if necessary |
Function_() as string variant |
FunctionString() as string variant |
Utf8Buffer |
Utf8Handle |
New<T>(uint) |
MemAlloc<T>(uint) |
Get* (GetDroppedFiles) |
-, use Load*, Unload* (Load/UnloadDroppedFiles) |
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net8.0 is compatible. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. net9.0 was computed. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. net10.0 was computed. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.0-windows was computed. |
-
net8.0
- Raylib-cs.BleedingEdge.Runtimes (>= 5.5.0-dev-61)
NuGet packages (3)
Showing the top 3 NuGet packages that depend on Raylib-cs.BleedingEdge:
| Package | Downloads |
|---|---|
|
Vigilance
2D Game Engine |
|
|
Raylib-cs.BleedingEdge.Shared
C# binding for raylib, a simple and easy-to-use library to learn videogames programming |
|
|
Raylib-cs.BleedingEdge.Static
C# binding for raylib, a simple and easy-to-use library to learn videogames programming |
GitHub repositories
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated |
|---|---|---|
| 5.6.2-dev.225 | 317 | 11/24/2025 |
| 5.6.2-dev.224 | 369 | 11/18/2025 |
| 5.6.2-dev.223 | 257 | 11/13/2025 |
| 5.6.2-dev.222 | 177 | 11/9/2025 |
| 5.6.2-dev.220 | 169 | 10/28/2025 |
| 5.6.2-dev.219 | 153 | 10/28/2025 |
| 5.6.2-dev.218 | 163 | 10/23/2025 |
| 5.6.2-dev.217 | 140 | 10/22/2025 |
| 5.6.2-dev.216 | 148 | 10/21/2025 |
| 5.6.2-dev.214 | 163 | 10/2/2025 |
| 5.6.2-dev.213 | 156 | 9/24/2025 |
| 5.6.2-dev.212 | 153 | 9/23/2025 |
| 5.6.2-dev.211 | 283 | 9/18/2025 |
| 5.6.2-dev.210 | 276 | 9/18/2025 |
| 5.6.2-dev.209 | 285 | 9/17/2025 |
| 5.6.2-dev.208 | 133 | 9/13/2025 |
| 5.6.2-dev.207 | 98 | 9/12/2025 |
| 5.6.2-dev.206 | 159 | 9/5/2025 |
| 5.6.2-dev.201 | 152 | 8/20/2025 |
| 5.5.0-dev-61 | 112 | 9/28/2024 |