示例#1
0
 //[System.Runtime.CompilerServices.MethodImpl(Runtime.CompilerServices.MethodImplOptions.Synchronized)]
 public static Group Synchronized(Group inner)
 {
     if (inner == null)
     {
         throw new ArgumentNullException("inner");
     }
     CaptureCollection captures = inner.Captures;
     if (inner._capcount > 0)
     {
         Capture capture1 = captures[0];
     }
     return inner;
 }
 // Methods
 internal CaptureCollection(Group group)
 {
     this._group = group;
     this._capcount = this._group._capcount;
 }