Overload List

  NameDescription
Public methodSchema()()()()
Create a new schema object
Public methodSchema(String)
Create a new schema object specifying a schema like "A,B:int,C:double" for user defined type schema 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)
Public methodSchema(array<String>[]()[][])
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)

See Also