mirror of
https://github.com/google/flatbuffers.git
synced 2026-06-02 12:05:50 +00:00
* Update idl_gen_csharp.cpp Change csharp generator to use "global::" for it's qualifying_start_ to disambiguate namespaces * regenerate testing files regenerate testing files * Missed TableInC.cs updated with global prefix * Remove "global::" from qualifying_start_ for csharp generator * C# global alias * Tests and docs for --cs-global-alias Add tests for --cs-global-alias to demonstrate use case for why it's needed. Add documentation to Compiler.md * Add also to help text Add also to help text
8 lines
131 B
Plaintext
8 lines
131 B
Plaintext
include "nested_namespace_test1.fbs";
|
|
|
|
namespace NamespaceA.NamespaceB;
|
|
|
|
table ColorTestTable {
|
|
color:NamespaceB.Color = Blue;
|
|
}
|