Raylib-cs.BleedingEdge 5.5.0-dev-61

This is a prerelease version of Raylib-cs.BleedingEdge.
There is a newer prerelease version of this package available.
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
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Raylib-cs.BleedingEdge" Version="5.5.0-dev-61" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Raylib-cs.BleedingEdge" Version="5.5.0-dev-61" />
                    
Directory.Packages.props
<PackageReference Include="Raylib-cs.BleedingEdge" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Raylib-cs.BleedingEdge --version 5.5.0-dev-61
                    
#r "nuget: Raylib-cs.BleedingEdge, 5.5.0-dev-61"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package Raylib-cs.BleedingEdge@5.5.0-dev-61
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Raylib-cs.BleedingEdge&version=5.5.0-dev-61&prerelease
                    
Install as a Cake Addin
#tool nuget:?package=Raylib-cs.BleedingEdge&version=5.5.0-dev-61&prerelease
                    
Install as a Cake Tool

logo

Raylib-cs.BleedingEdge

C# bindings for raylib, a simple and easy-to-use library to learn videogames programming (www.raylib.com)

NuGet Downloads GitHub License Discord GitHub Repo stars GitHub commit activity GitHub Actions Workflow Status


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 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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

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 201 11/24/2025
5.6.2-dev.224 355 11/18/2025
5.6.2-dev.223 244 11/13/2025
5.6.2-dev.222 163 11/9/2025
5.6.2-dev.220 158 10/28/2025
5.6.2-dev.219 148 10/28/2025
5.6.2-dev.218 149 10/23/2025
5.6.2-dev.217 132 10/22/2025
5.6.2-dev.216 135 10/21/2025
5.6.2-dev.214 151 10/2/2025
5.6.2-dev.213 143 9/24/2025
5.6.2-dev.212 142 9/23/2025
5.6.2-dev.211 270 9/18/2025
5.6.2-dev.210 266 9/18/2025
5.6.2-dev.209 274 9/17/2025
5.6.2-dev.208 123 9/13/2025
5.6.2-dev.207 89 9/12/2025
5.6.2-dev.206 150 9/5/2025
5.6.2-dev.201 139 8/20/2025
5.6.2-dev.200 138 8/18/2025
5.6.2-dev.199 140 8/13/2025
5.6.2-dev.198 136 8/12/2025
5.6.2-dev.197 218 8/5/2025
5.6.2-dev.196 164 8/4/2025
5.6.2-dev.195 41 8/2/2025
5.6.2-dev.194 54 8/1/2025
5.6.2-dev.189 117 7/30/2025
5.6.2-dev.188 257 7/26/2025
5.6.2-dev.186 409 7/21/2025
5.6.2-dev.185 63 7/19/2025
5.6.2-dev.184 136 7/15/2025
5.6.2-dev.183 128 7/15/2025
5.6.2-dev.182 134 7/14/2025
5.6.2-dev.181 134 7/9/2025
5.6.2-dev.180 136 7/2/2025
5.6.2-dev.179 91 6/27/2025
5.6.2-dev.178 147 6/23/2025
5.6.2-dev.177 65 6/21/2025
5.6.2-dev.176 141 6/17/2025
5.6.2-dev.175 138 6/17/2025
5.6.2-dev.174 142 6/2/2025
5.6.2-dev.173 103 5/31/2025
5.6.2-dev.172 142 5/28/2025
5.6.2-dev.171 142 5/19/2025
5.6.2-dev.170 175 5/16/2025
5.6.2-dev.168 181 5/16/2025
5.6.2-dev.167 214 5/12/2025
5.6.2-dev.166 118 5/9/2025
5.6.2-dev.165 147 5/5/2025
5.6.2-dev.162 142 4/27/2025
5.6.2-dev.61 140 4/27/2025
5.6.2-dev.60 117 2/25/2025
5.6.2-dev.59 89 2/23/2025
5.6.2-dev.58 94 2/21/2025
5.6.2-dev.57 97 2/20/2025
5.6.2-dev.56 94 2/14/2025
5.6.2-dev.55 98 2/13/2025
5.6.2-dev.54 96 2/1/2025
5.6.2-dev.53 89 1/31/2025
5.6.2-dev.52 102 1/28/2025
5.6.2-dev.51 86 1/28/2025
5.6.2-dev.45 78 1/27/2025
5.6.2-dev.44 88 1/25/2025
5.6.2-dev.43 85 1/24/2025
5.6.2-dev.42 90 1/22/2025
5.6.2-dev.41 84 1/19/2025
5.6.2-dev.40 80 1/16/2025
5.6.2-dev.39 82 1/16/2025
5.6.2-dev.38 79 1/13/2025
5.6.2-dev.37 92 1/10/2025
5.6.2-dev.36 62 1/9/2025
5.6.2-dev.35 72 1/8/2025
5.6.2-dev.34 121 1/3/2025
5.6.2-dev.33 109 12/31/2024
5.6.2-dev.32 94 12/26/2024
5.6.2-dev.31 100 12/24/2024
5.6.2-dev.30 93 12/23/2024
5.6.2-dev.29 88 12/21/2024
5.6.2-dev.28 92 12/21/2024
5.6.2-dev.27 89 12/20/2024
5.6.2-dev.26 88 12/18/2024
5.6.2-dev.25 84 12/18/2024
5.6.2-dev.24 104 12/8/2024
5.6.2-dev.23 92 12/8/2024
5.6.2-dev.22 103 12/5/2024
5.6.2-dev.21 93 12/3/2024
5.6.2-dev.20 81 12/2/2024
5.6.2-dev.19 99 11/29/2024
5.6.2-dev.18 106 11/22/2024
5.5.2-dev.17 93 11/20/2024
5.5.2-dev.16 95 11/20/2024
5.5.1-dev-9 93 11/4/2024
5.5.1-dev-8 91 10/29/2024
5.5.1-dev-7 91 10/28/2024
5.5.1-dev-6 86 10/25/2024
5.5.1-dev-5 85 10/24/2024
5.5.1-dev-4 81 10/24/2024
5.5.1-dev-3 89 10/24/2024
5.5.1-dev-14 79 11/20/2024
5.5.1-dev-13 86 11/20/2024
5.5.1-dev-12 81 11/18/2024
5.5.1-dev-11 84 11/18/2024
5.5.1-dev-10 80 11/18/2024
5.5.1-dev.15 82 11/20/2024
5.5.0-dev-94 90 10/23/2024
5.5.0-dev-92 85 10/23/2024
5.5.0-dev-87 92 10/23/2024
5.5.0-dev-86 82 10/22/2024
5.5.0-dev-85 82 10/22/2024
5.5.0-dev-84 79 10/22/2024
5.5.0-dev-83 117 10/18/2024
5.5.0-dev-82 74 10/17/2024
5.5.0-dev-81 92 10/16/2024
5.5.0-dev-80 87 10/16/2024
5.5.0-dev-79 95 10/16/2024
5.5.0-dev-77 85 10/15/2024
5.5.0-dev-76 87 10/15/2024
5.5.0-dev-75 87 10/15/2024
5.5.0-dev-74 88 10/15/2024
5.5.0-dev-72 91 10/15/2024
5.5.0-dev-68 88 10/15/2024
5.5.0-dev-67 97 10/10/2024
5.5.0-dev-66 93 10/9/2024
5.5.0-dev-65 98 10/4/2024
5.5.0-dev-63 89 10/2/2024
5.5.0-dev-62 96 10/1/2024
5.5.0-dev-61 93 9/28/2024
5.5.0-dev-60 87 9/27/2024
5.5.0-dev-59 96 9/23/2024
5.5.0-dev-58 99 9/22/2024
5.5.0-dev-57 84 9/20/2024
5.5.0-dev-55 113 9/16/2024
5.5.0-dev-54 91 9/16/2024
5.5.0-dev-53 92 9/16/2024
5.5.0-dev-52 104 9/15/2024
5.5.0-dev-51 95 9/13/2024
5.5.0-dev-50 95 8/29/2024
5.5.0-dev-49 93 8/27/2024
5.5.0-dev-47 86 8/27/2024
5.5.0-dev-102 88 10/24/2024