Created all System.Diagnostics.SymbolWriter interfaces
[mono.git] / mcs / class / corlib / System.Diagnostics.SymbolStore / ISymbolVariable.cs
1 //
2 // System.Diagnostics.SymbolStore.ISymbolVariable
3 //
4 // Author:
5 //   Duco Fijma (duco@lorentz.xs4all.nl)
6 //
7 //   (c) 2002 Duco Fijma
8 // 
9
10 namespace System.Diagnostics.SymbolStore
11 {
12
13 public interface ISymbolVariable {
14
15         int AddressField1 {get; }
16         int AddressField2 {get; }
17         int AddressField3 {get; }
18         SymAddressKind AddressKind {get ;}
19         object Attributes {get ;}
20         int EndOffset {get; }
21         string Name {get; }
22         int StartOffset {get; }
23         
24         byte[] GetSignature ();
25
26 }
27
28 }