Create a new schema object specifying a schema like {"A", "B:int" , "C:double"}
for user defined type column string must contain C# name of the type
do not use this method with CLR name of type (Type.FullName)
In all other cases create empty schema and add columns using ColumnInfo(string name, Type type)
Namespace: ScopeRuntimeAssembly: ScopeRuntime (in ScopeRuntime.exe) Version: 1.0.0.0 (10.2.2.0)
Syntax
C# |
---|
public Schema(
string[] schema
) |
Visual Basic |
---|
Public Sub New ( _
schema As String() _
) |
Visual C++ |
---|
public:
Schema(
array<String^>^ schema
) |
Parameters
- schema
- Type: array<String>[]()[][]
array of strings representing the schema, like "A", "B:int?", "C:byte[]"
See Also