forked from jamescourtney/FlatSharp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathProgram.cs
More file actions
20 lines (20 loc) · 746 Bytes
/
Copy pathProgram.cs
File metadata and controls
20 lines (20 loc) · 746 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
namespace Samples
{
public static class Program
{
public static void Main(string[] args)
{
MonsterAttributeExample.MonsterAttributeExample.Run();
SerializerOptions.SerializerOptionsExample.Run();
SchemaFilesExample.SchemaFilesExample.Run();
SchemaFilesExample2.SchemaFilesExample2.Run();
GrpcExample.GrpcExample.Run();
CopyConstructorsExample.CopyConstructorsExample.Run();
IncludesExample.IncludesExample.Run();
SortedVectors.SortedVectorsExample.Run();
Unions.UnionsExample.Run();
SharedStrings.SharedStringsExample.Run();
IndexedVectors.IndexedVectorsExample.Run();
}
}
}