[corlib] Parse datetime string using culture calendar. Fixes #18052
[mono.git] / mcs / class / corlib / System.Reflection / ImageFileMachine.cs
index 74b4dcda8495b0cdf264fcb3b49b015b855dd986..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
 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 //
 
+using System.Runtime.InteropServices;
+
 namespace System.Reflection {
 
+       [ComVisible (true)]
        [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
        }
 }