MonoTouch specific initialization for TimeZone (devices). Fix bug #1790
[mono.git] / mcs / class / corlib / System.Diagnostics.SymbolStore / SymAddressKind.cs
index 2d2f1fe04de3c6dcced4194b4c73b2c00a11a5a2..37d4d84cefdf6042ace38407e85ddc83703c5719 100644 (file)
 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 //
 
-#if NET_2_0
 using System.Runtime.InteropServices;
-#endif
 
 namespace System.Diagnostics.SymbolStore
 {
-#if NET_2_0
        [ComVisible (true)]
        [Serializable]
-#endif
        public enum SymAddressKind {
                ILOffset = 1,
                NativeRVA = 2,
@@ -49,10 +45,7 @@ namespace System.Diagnostics.SymbolStore
                NativeRegisterRegister = 6,
                NativeRegisterStack = 7,
                NativeStackRegister = 8,
-               BitField = 9
-#if NET_2_0
-               ,
+               BitField = 9,
                NativeSectionOffset = 10
-#endif
        }
 }