C# 클래스 Earthworm.Meta.CodeGeneratorExt

Provides extension methods that return CSharp or VB code representations of geodatabase objects.
파일 보기 프로젝트 열기: jshirota/Earthworm

공개 메소드들

메소드 설명
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