|
Type bindings in .NET (C#) reuse the following standard types:
bool
is used for boolean values.int
is used for integer values.long
is used for long values.double
is used for double float values.string
is used for string values (for the purpose of serialization and deserialization, the UTF-8 encoding is used).byte[]
is used to describe binary buffers.