Example #1
0
 /// <summary>
 /// Private ctor
 /// </summary>
 private ArrayList(Java.Util.IList <object> list, bool isFixedSize, bool isReadOnly, bool isSynchronized)
 {
     this.list           = list;
     this.isFixedSize    = isFixedSize;
     this.isReadOnly     = isReadOnly;
     this.isSynchronized = isSynchronized;
 }
Example #2
0
 /// <summary>
 /// Private ctor
 /// </summary>
 private ArrayList(Java.Util.IList<object> list, bool isFixedSize, bool isReadOnly, bool isSynchronized)
 {
     this.list = list;
     this.isFixedSize = isFixedSize;
     this.isReadOnly = isReadOnly;
     this.isSynchronized = isSynchronized;
 }