C# Class Earthworm.Meta.CodeGeneratorExt

Provides extension methods that return CSharp or VB code representations of geodatabase objects.
ファイルを表示 Open project: jshirota/Earthworm

Public Methods

Method Description
ToCSharp ( this table, string className, bool includeUsingStatements = true ) : string

Generates a CSharp class that maps this table into an object.

ToCSharp ( this table, string namespaceName, string className, bool includeUsingStatements = true ) : string

Generates a CSharp class that maps this table into an object.

ToVB ( this table, string className, bool includeUsingStatements = true ) : string

Generates a VB class that maps this table into an object.

ToVB ( this table, string namespaceName, string className, bool includeUsingStatements = true ) : string

Generates a VB class that maps this table into an object.

Method Details

ToCSharp() public static method

Generates a CSharp class that maps this table into an object.
public static ToCSharp ( this table, string className, bool includeUsingStatements = true ) : string
table this
className string
includeUsingStatements bool
return string

ToCSharp() public static method

Generates a CSharp class that maps this table into an object.
public static ToCSharp ( this table, string namespaceName, string className, bool includeUsingStatements = true ) : string
table this
namespaceName string
className string
includeUsingStatements bool
return string

ToVB() public static method

Generates a VB class that maps this table into an object.
public static ToVB ( this table, string className, bool includeUsingStatements = true ) : string
table this
className string
includeUsingStatements bool
return string

ToVB() public static method

Generates a VB class that maps this table into an object.
public static ToVB ( this table, string namespaceName, string className, bool includeUsingStatements = true ) : string
table this
namespaceName string
className string
includeUsingStatements bool
return string