[corlib] Parse datetime string using culture calendar. Fixes #18052
[mono.git] / mcs / class / corlib / System.Reflection / ImageFileMachine.cs
index 1ffbe8b16af4462e949d37530f3a7ad25b32210c..fba3f12345fc6aa6fe345ad65f4c2b89a87e54d6 100644 (file)
@@ -1,10 +1,12 @@
 //
 // System.Reflection.ImageFileMachine enumeration
 //
-// Author:
+// Authors:
 //     Sebastien Pouliot  <sebastien@ximian.com>
+//     Marek Safar  <marek.safar@gmail.com>
 //
 // Copyright (C) 2004 Novell, Inc (http://www.novell.com)
+// Copyright (C) 2012 Xamarin Inc (http://www.xamarin.com)
 //
 // Permission is hereby granted, free of charge, to any person obtaining
 // a copy of this software and associated documentation files (the
@@ -30,18 +32,14 @@ using System.Runtime.InteropServices;
 
 namespace System.Reflection {
 
-#if NET_2_0
        [ComVisible (true)]
-#endif
        [Serializable]
-#if NET_2_0 || BOOTSTRAP_NET_2_0
-       public
-#else
-       internal
-#endif 
-       enum ImageFileMachine {
+       public enum ImageFileMachine {
                I386 = 332,
                IA64 = 512,
                AMD64 = 34404,
+#if NET_4_5
+               ARM = 452,
+#endif
        }
 }