9aba0f63ba121d1b655a801c5133ae1e7512f4b9
[mono.git] / mcs / class / corlib / System.Text / EncodingHelper.MonoTouch.opt.cs
1 #if MONOTOUCH
2
3 // this file is a shim to enable compiling monotouch profiles without mono-extensions
4 namespace System.Text
5 {
6         internal static partial class EncodingHelper
7         {
8                 internal static Encoding GetDefaultEncoding ()
9                 {
10                         throw new NotSupportedException ();
11                 }
12         }
13 }
14
15 #endif