FlatSharp.Runtime 7.6.0

dotnet add package FlatSharp.Runtime --version 7.6.0
NuGet\Install-Package FlatSharp.Runtime -Version 7.6.0
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="FlatSharp.Runtime" Version="7.6.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add FlatSharp.Runtime --version 7.6.0
#r "nuget: FlatSharp.Runtime, 7.6.0"
#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.
// Install FlatSharp.Runtime as a Cake Addin
#addin nuget:?package=FlatSharp.Runtime&version=7.6.0

// Install FlatSharp.Runtime as a Cake Tool
#tool nuget:?package=FlatSharp.Runtime&version=7.6.0

Welcome to FlatSharp!

Thanks for using FlatSharp! FlatSharp is a C# FlatBuffers implementation designed to be secure, fast, and easy to use.

Quick Resources

Issues, Contributions, and Feedback

FlatSharp is open source. Find it on GitHub! Issues, contributions, and other feedback are always welcome. Don't be a stranger! If you have feedback to share, please consider filling out the form here!

Sponsorship

FlatSharp is free and always will be. However, the project does take a significant amount of time to maintain. If you or your organization find the project useful, please consider a Github sponsorship. Any amount is appreciated!

Quick Start

1. Reference FlatSharp

Reference both FlatSharp.Runtime and FlatSharp.Compiler. Use the same version for them both.

2. Define a Schema
// all FlatSharp FBS attributes start with the 'fs_' prefix.
attribute "fs_serializer";

namespace MyNamespace;

enum Color : ubyte { Red = 1, Green, Blue }

table Person (fs_serializer) {
    Id:int;
    Name:string;
    Parent:Person (deprecated);
    Children:[Person];
    FavoriteColor:Color = Blue;
    Position:Location;
}

struct Location {
    Latitude:float;
    Longitude:float;
}
3. Update Your csproj
   <ItemGroup>
     <FlatSharpSchema Include="YourSchema.fbs" />
   </ItemGroup>
4. Serialize Your Data
Person person = new Person(...);
int maxBytesNeeded = Person.Serializer.GetMaxSize(person);
byte[] buffer = new byte[maxBytesNeeded];
int bytesWritten = Person.Serializer.Serialize(buffer, person);
5. Parse Your Data
Person p = Person.Serializer.Parse(data);

License

FlatSharp is licensed under Apache 2.0. Have fun 😃

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 is compatible.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  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. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 is compatible. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos 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 FlatSharp.Runtime:

Package Downloads
FlatSharp

FlatSharp is an idiomatic C# implementation of the FlatBuffer serialization format. Use attributes to declare your data contracts!

FlatSharp.Unsafe

Performance-optimized unsafe extensions to the FlatSharp package.

LeagueToolkit

Library for Parsing and Editing file formats from League of Legends

GitHub repositories (4)

Showing the top 4 popular GitHub repositories that depend on FlatSharp.Runtime:

Repository Stars
jamescourtney/FlatSharp
Fast, idiomatic C# implementation of Flatbuffers
kwsch/pkNX
Pokémon (Nintendo Switch) ROM Editor & Randomizer
LegoFigure11/RaidCrawler
Raid Viewer for Pokémon Scarlet and Violet
Manu098vm/Tera-Finder
This is a PKHeX.Core based program that allows to view, edit and calculate Raids and Mass Outbreaks for Pokémon Scarlet & Violet.
Version Downloads Last updated
7.6.0 2,199 3/14/2024
7.5.1 472 2/25/2024
7.5.0 190 2/23/2024
7.4.0 38,142 12/2/2023
7.3.0 5,567 9/12/2023
7.2.3 15,661 8/11/2023
7.2.1 798 8/4/2023
7.2.0 213 8/3/2023
7.1.1 8,099 3/17/2023
7.1.0 4,368 1/31/2023
7.0.2 17,595 11/25/2022
7.0.1 1,310 11/18/2022
7.0.0 427 11/17/2022
6.3.5 7,299 11/4/2022
6.3.3 4,711 10/1/2022
6.3.2 1,480 9/21/2022
6.3.1 19,137 4/26/2022
6.3.0 737 4/24/2022
6.2.1 1,865 3/15/2022
6.2.0 2,327 2/17/2022
6.1.1 756 2/7/2022
6.1.0 732 2/4/2022
6.0.5 2,135 1/6/2022
6.0.4 9,761 12/16/2021
6.0.3 458 12/14/2021
6.0.2 858 12/8/2021
6.0.1 762 12/5/2021
6.0.0 15,223 9/18/2021
6.0.0-beta3 264 9/16/2021
6.0.0-beta2 246 9/13/2021
6.0.0-beta1 276 9/13/2021
5.7.1 3,837 8/26/2021
5.7.0 8,029 8/24/2021
5.6.0 745 7/27/2021
5.5.0 753 7/1/2021
5.4.1 640 6/22/2021
5.4.0 826 6/9/2021
5.3.1 736 5/30/2021
5.3.0 642 5/23/2021
5.2.1 1,313 5/7/2021
5.2.0 1,531 4/12/2021
5.1.0 1,584 3/18/2021
5.0.1 720 3/14/2021
5.0.0 1,877 3/10/2021
4.2.4 21,235 2/22/2021
4.2.3 1,594 2/16/2021
4.2.2 685 2/14/2021
4.2.1 636 2/14/2021
4.2.0 607 2/14/2021
4.1.0 2,712 10/17/2020
4.0.2 990 10/11/2020
4.0.1 764 10/8/2020
4.0.0 799 10/7/2020
3.3.1 8,350 9/7/2020
3.3.0 864 8/20/2020
3.2.0 1,107 7/30/2020
3.1.1 803 7/28/2020
3.1.0 868 7/27/2020
3.0.0 1,976 3/30/2020
2.1.0 3,871 2/9/2020
2.0.0 816 2/2/2020
1.2.0 845 1/30/2020