C# Класс Earthworm.Meta.CodeGeneratorExt

Provides extension methods that return CSharp or VB code representations of geodatabase objects.
Показать файл Открыть проект

Открытые методы

Метод Описание
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.

Описание методов

ToCSharp() публичный статический Метод

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
Результат string

ToCSharp() публичный статический Метод

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
Результат string

ToVB() публичный статический Метод

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
Результат string

ToVB() публичный статический Метод

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
Результат string