Interface IUsingStatementNamespace
Mapping of the alias and namespace used in C# source files.
Namespace: CodeFactory.WinVs.Models.CSharp
Assembly: CodeFactory.WinVs.dll
Syntax
public interface IUsingStatementNamespace
Properties
Alias
The alias assigned to the namespace being imported. This will be null if the HasAlias is false.
Declaration
string Alias { get; }
Property Value
Type | Description |
---|---|
string |
HasAlias
Flag that determines if the namespace reference has an alias.
Declaration
bool HasAlias { get; }
Property Value
Type | Description |
---|---|
bool |
ReferenceNamespace
The target namespace that is being imported into the sources scope.
Declaration
string ReferenceNamespace { get; }
Property Value
Type | Description |
---|---|
string |