Click or drag to resize

IVariableDecl Interface

This interface is implemented by all code objects that represent variable declarations, which includes VariableDecl (ParameterDecl, LocalDecl, FieldDecl, EnumMemberDecl), and PropertyDeclBase (PropertyDecl, EventDecl, IndexerDecl).

Namespace:  Nova.CodeDOM
Assembly:  Nova.CodeDOM (in Nova.CodeDOM.dll) Version: 7.44.8391.13415
Syntax
C#
public interface IVariableDecl : INamedCodeObject

The IVariableDecl type exposes the following members.

Properties
  NameDescription
Public propertyCategory
The descriptive category of the CodeObject.
(Inherited from INamedCodeObject.)
Public propertyName
The name of the CodeObject.
(Inherited from INamedCodeObject.)
Public propertyType
The type of the variable declaration.
Top
Methods
  NameDescription
Public methodAddToDictionary
Add the CodeObject to the specified dictionary.
(Inherited from INamedCodeObject.)
Public methodCreateRef
Create a reference to the CodeObject.
(Inherited from INamedCodeObject.)
Public methodFindParentT
Find the parent object of the specified type.
(Inherited from INamedCodeObject.)
Public methodGetFullName
Get the full name of the INamedCodeObject, including any namespace name.
(Inherited from INamedCodeObject.)
Public methodRemoveFromDictionary
Remove the CodeObject from the specified dictionary.
(Inherited from INamedCodeObject.)
Top
See Also