Class Symbols
Data class that provides the syntax to common symbols used in the definition of C# source code.
Inherited Members
Namespace: CodeFactory.DotNet.CSharp.FormattedSyntax
Assembly: CodeFactory.DotNet.dll
Syntax
public static class Symbols
Fields
| Improve this Doc View SourceArrayDefinitionEnd
Symbol that ends the definition of an array.
Declaration
public const string ArrayDefinitionEnd = "]"
Field Value
Type | Description |
---|---|
string |
ArrayDefinitionStart
Symbol that starts the definition of an array.
Declaration
public const string ArrayDefinitionStart = "["
Field Value
Type | Description |
---|---|
string |
EndOfStatement
Symbol that denotes the end of a C# code statement.
Declaration
public const string EndOfStatement = ";"
Field Value
Type | Description |
---|---|
string |
GenericDefinitionEnd
Symbol that ends the definition of a generic.
Declaration
public const string GenericDefinitionEnd = ">"
Field Value
Type | Description |
---|---|
string |
GenericDefinitionStart
Symbol that starts the definition of a generic.
Declaration
public const string GenericDefinitionStart = "<"
Field Value
Type | Description |
---|---|
string |
MultipleStatementEnd
Symbol that ends the definition of multiple C# statements to be executed.
Declaration
public const string MultipleStatementEnd = "}"
Field Value
Type | Description |
---|---|
string |
MultipleStatementStart
Symbol that starts the definition for multiple C# statements to be executed.
Declaration
public const string MultipleStatementStart = "{"
Field Value
Type | Description |
---|---|
string |
ParametersDefinitionEnd
Symbol that ends the definition of a parameters section.
Declaration
public const string ParametersDefinitionEnd = ")"
Field Value
Type | Description |
---|---|
string |
ParametersDefinitionStart
Symbol that starts the definition of a parameters section.
Declaration
public const string ParametersDefinitionStart = "("
Field Value
Type | Description |
---|---|
string |