C# 클래스 Evaluator.VBLanguage

A basic specification of the syntax of VB.NET
상속: Language
파일 보기 프로젝트 열기: swax/SwarmNLP

공개 메소드들

메소드 설명
VBLanguage ( ) : System

Constructs a new instance of the VBLanguageOptions class.

beginNamespace ( string namespaceName ) : string

Generates a statement to begin a namespace

beginType ( string typeName ) : string

Generates a statement to begin a type

endNamespace ( string namespaceName ) : string

Generates a statement to end a namespace

endType ( string typeName ) : string

Generates a statement to end a type

useStatement ( string assemblyName ) : string

Generates a statement to allow treatment of classes within an assembly/namespace as if they were local

메소드 상세

VBLanguage() 공개 메소드

Constructs a new instance of the VBLanguageOptions class.
public VBLanguage ( ) : System
리턴 System

beginNamespace() 공개 메소드

Generates a statement to begin a namespace
public beginNamespace ( string namespaceName ) : string
namespaceName string /// The name of the namespace ///
리턴 string

beginType() 공개 메소드

Generates a statement to begin a type
public beginType ( string typeName ) : string
typeName string /// The name of the type ///
리턴 string

endNamespace() 공개 메소드

Generates a statement to end a namespace
public endNamespace ( string namespaceName ) : string
namespaceName string /// The name of the namespace ///
리턴 string

endType() 공개 메소드

Generates a statement to end a type
public endType ( string typeName ) : string
typeName string /// The name of the type ///
리턴 string

useStatement() 공개 메소드

Generates a statement to allow treatment of classes within an assembly/namespace as if they were local
public useStatement ( string assemblyName ) : string
assemblyName string /// The name of the assembly to be treated as local ///
리턴 string