FlatSharp.Runtime 7.8.0

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

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.  net9.0 is compatible.  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. 
.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 (8)

Showing the top 5 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

OpenShock.Serialization.Flatbuffers

Contains flatbuffers source files with flatbuffers compiler setup to generate useable flatbuffer bindings

UnityMathematics.Schemas

FlatBuffer schemas for Unity.Mathematics types

GitHub repositories (6)

Showing the top 6 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
Manu098vm/Tera-Finder
PKHeX.Core based program that allows users to view, edit, and calculate Raids and Mass Outbreaks for Pokémon Scarlet & Violet. It is the spiritual successor to SVXoroCalc.
LegoFigure11/RaidCrawler
Raid Viewer for Pokémon Scarlet and Violet
LeagueToolkit/LeagueToolkit
LeagueToolkit is a library for parsing and editing assets from League of Legends
Nenkai/GBFRDataTools
Tools/Libraries for dealing with Granblue Fantasy: Relink.
Version Downloads Last updated
7.8.0 7,107 5 months ago
7.7.0 38,058 5/31/2024
7.6.0 163,049 3/14/2024
7.5.1 1,050 2/25/2024
7.5.0 301 2/23/2024
7.4.0 46,548 12/2/2023
7.3.0 10,964 9/12/2023
7.2.3 15,835 8/11/2023
7.2.1 865 8/4/2023
7.2.0 271 8/3/2023
7.1.1 9,996 3/17/2023
7.1.0 4,618 1/31/2023
7.0.2 19,007 11/25/2022
7.0.1 1,397 11/18/2022
7.0.0 528 11/17/2022
6.3.5 9,736 11/4/2022 6.3.5 is deprecated because it is no longer maintained.
6.3.3 5,137 10/1/2022 6.3.3 is deprecated because it is no longer maintained.
6.3.2 1,565 9/21/2022 6.3.2 is deprecated because it is no longer maintained.
6.3.1 48,540 4/26/2022 6.3.1 is deprecated because it is no longer maintained.
6.3.0 827 4/24/2022 6.3.0 is deprecated because it is no longer maintained.
6.2.1 2,039 3/15/2022 6.2.1 is deprecated because it is no longer maintained.
6.2.0 2,393 2/17/2022 6.2.0 is deprecated because it is no longer maintained.
6.1.1 810 2/7/2022 6.1.1 is deprecated because it is no longer maintained.
6.1.0 813 2/4/2022 6.1.0 is deprecated because it is no longer maintained.
6.0.5 2,346 1/6/2022 6.0.5 is deprecated because it is no longer maintained.
6.0.4 12,256 12/16/2021 6.0.4 is deprecated because it is no longer maintained.
6.0.3 530 12/14/2021 6.0.3 is deprecated because it is no longer maintained.
6.0.2 1,313 12/8/2021 6.0.2 is deprecated because it is no longer maintained.
6.0.1 839 12/5/2021 6.0.1 is deprecated because it is no longer maintained.
6.0.0 17,305 9/18/2021 6.0.0 is deprecated because it is no longer maintained.
6.0.0-beta3 319 9/16/2021 6.0.0-beta3 is deprecated because it is no longer maintained.
6.0.0-beta2 311 9/13/2021 6.0.0-beta2 is deprecated because it is no longer maintained.
6.0.0-beta1 341 9/13/2021 6.0.0-beta1 is deprecated because it is no longer maintained.
5.7.1 3,951 8/26/2021 5.7.1 is deprecated because it is no longer maintained.
5.7.0 8,123 8/24/2021 5.7.0 is deprecated because it is no longer maintained.
5.6.0 826 7/27/2021 5.6.0 is deprecated because it is no longer maintained.
5.5.0 848 7/1/2021 5.5.0 is deprecated because it is no longer maintained.
5.4.1 721 6/22/2021 5.4.1 is deprecated because it is no longer maintained.
5.4.0 911 6/9/2021 5.4.0 is deprecated because it is no longer maintained.
5.3.1 832 5/30/2021 5.3.1 is deprecated because it is no longer maintained.
5.3.0 741 5/23/2021 5.3.0 is deprecated because it is no longer maintained.
5.2.1 1,540 5/7/2021 5.2.1 is deprecated because it is no longer maintained.
5.2.0 1,619 4/12/2021 5.2.0 is deprecated because it is no longer maintained.
5.1.0 1,694 3/18/2021 5.1.0 is deprecated because it is no longer maintained.
5.0.1 815 3/14/2021 5.0.1 is deprecated because it is no longer maintained.
5.0.0 1,968 3/10/2021 5.0.0 is deprecated because it is no longer maintained.
4.2.4 21,346 2/22/2021 4.2.4 is deprecated because it is no longer maintained.
4.2.3 1,687 2/16/2021 4.2.3 is deprecated because it is no longer maintained.
4.2.2 790 2/14/2021 4.2.2 is deprecated because it is no longer maintained.
4.2.1 735 2/14/2021 4.2.1 is deprecated because it is no longer maintained.
4.2.0 692 2/14/2021 4.2.0 is deprecated because it is no longer maintained.
4.1.0 2,787 10/17/2020 4.1.0 is deprecated because it is no longer maintained.
4.0.2 1,087 10/11/2020 4.0.2 is deprecated because it is no longer maintained.
4.0.1 871 10/8/2020 4.0.1 is deprecated because it is no longer maintained.
4.0.0 905 10/7/2020 4.0.0 is deprecated because it is no longer maintained.
3.3.1 8,836 9/7/2020 3.3.1 is deprecated because it is no longer maintained.
3.3.0 952 8/20/2020 3.3.0 is deprecated because it is no longer maintained.
3.2.0 1,199 7/30/2020 3.2.0 is deprecated because it is no longer maintained.
3.1.1 891 7/28/2020 3.1.1 is deprecated because it is no longer maintained.
3.1.0 968 7/27/2020 3.1.0 is deprecated because it is no longer maintained.
3.0.0 2,086 3/30/2020 3.0.0 is deprecated because it is no longer maintained.
2.1.0 4,102 2/9/2020 2.1.0 is deprecated because it is no longer maintained.
2.0.0 898 2/2/2020 2.0.0 is deprecated because it is no longer maintained.
1.2.0 1,034 1/30/2020 1.2.0 is deprecated because it is no longer maintained.