// dnlib: See LICENSE.txt for more info namespace dnlib.DotNet.Pdb.Symbols { /// /// A variable /// public abstract class SymbolVariable { /// /// Gets the name /// public abstract string Name { get; } /// /// Gets the attributes /// public abstract PdbLocalAttributes Attributes { get; } /// /// Gets the index of the variable /// public abstract int Index { get; } /// /// Gets all custom debug infos /// public abstract PdbCustomDebugInfo[] CustomDebugInfos { get; } } }