• Home
  • Raw
  • Download

Lines Matching refs:FlatBuffers

6 Before diving into the FlatBuffers usage in Java or C#, it should be noted that
8 general FlatBuffers usage in all of the supported languages (including both Java
9 and C#). This page is designed to cover the nuances of FlatBuffers usage,
17 ## FlatBuffers Java and C-sharp code location
21 The code for the FlatBuffers Java library can be found at
23 [FlatBuffers GitHub page](https://github.com/google/flatbuffers/tree/master/
28 The code for the FlatBuffers C# library can be found at
29 `flatbuffers/net/FlatBuffers`. You can browse the library on the
30 [FlatBuffers GitHub page](https://github.com/google/flatbuffers/tree/master/net/
31 FlatBuffers).
33 ## Testing the FlatBuffers Java and C-sharp libraries
52 The test code for C# is located in the [FlatBuffers.Test](https://github.com/
53 google/flatbuffers/tree/master/tests/FlatBuffers.Test) subfolder. To run the
54 tests, open `FlatBuffers.Test.csproj` in [Visual Studio](
59 by running the following commands from inside the `FlatBuffers.Test` folder:
62 mcs *.cs ../MyGame/Example/*.cs ../../net/FlatBuffers/*.cs
66 ## Using the FlatBuffers Java (and C#) library
69 example of how to use FlatBuffers in Java or C#.*
71 FlatBuffers supports reading and writing binary FlatBuffers in Java and C#.
73 To use FlatBuffers in your own code, first generate Java classes from your
75 Then you can include both FlatBuffers and the generated code to read
116 `tests/FlatBuffers.Test/FlatBuffersExampleTests.cs` or
136 FlatBuffers doesn't support dictionaries natively, but there is support to