| 12345678910111213141516171819202122232425262728 |
- //
- // System.Diagnostics.SymbolStore.ISymbolVariable
- //
- // Author:
- // Duco Fijma ([email protected])
- //
- // (c) 2002 Duco Fijma
- //
- namespace System.Diagnostics.SymbolStore
- {
- public interface ISymbolVariable {
- int AddressField1 {get; }
- int AddressField2 {get; }
- int AddressField3 {get; }
- SymAddressKind AddressKind {get ;}
- object Attributes {get ;}
- int EndOffset {get; }
- string Name {get; }
- int StartOffset {get; }
-
- byte[] GetSignature ();
- }
- }
|