column name and ordinal fix...tested on 10.1
[mono.git] / mcs / class / corlib / ReferenceSources / SharedStatics.cs
1 using System.Threading;
2 using StringMaker = System.Security.Util.Tokenizer.StringMaker;
3
4 namespace System
5 {
6         static class SharedStatics
7         {
8                 static StringMaker shared;
9                 static public StringMaker GetSharedStringMaker ()
10                 {
11                         if (shared == null)
12                                 Interlocked.CompareExchange (ref shared, new StringMaker (), null);
13
14                         return shared;
15                 }
16
17                 static public void ReleaseSharedStringMaker (ref StringMaker maker)
18                 {
19
20                 }
21         }
22 }