[corlib] Add iOS specific code for System.Environment.
[mono.git] / mcs / class / corlib / System / Guid.MonoTouch.opt.cs
1 #if MONOTOUCH && FULL_AOT_RUNTIME
2
3 // this file is a shim to enable compiling monotouch profiles without mono-extensions
4 namespace System
5 {
6         partial struct Guid
7         {
8                 public static Guid NewGuid ()
9                 {
10                         throw new NotSupportedException ();
11                 }
12         }
13 }
14
15 #endif