C# Class Earthworm.Meta.CodeGeneratorExt

Provides extension methods that return CSharp or VB code representations of geodatabase objects.
Afficher le fichier Open project: jshirota/Earthworm

Méthodes publiques

Méthode 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 méthode

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
Résultat string

ToCSharp() public static méthode

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
Résultat string

ToVB() public static méthode

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
Résultat string

ToVB() public static méthode

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
Résultat string