Example #1
0
 internal ReadOnlyPersonCollection(ObjectCollection coll) : base(coll)
 {
 }
Example #2
0
 public static ObjectCollection ReadOnly(ObjectCollection coll)
 {
     return(new ReadOnlyPersonCollection(coll));
 }
Example #3
0
 public ObjectCollection(ObjectCollection coll)
 {
     this.InnerList.AddRange(coll);
 }
Example #4
0
			internal ReadOnlyPersonCollection(ObjectCollection coll) : base(coll)
			{
			}
Example #5
0
		public static ObjectCollection ReadOnly(ObjectCollection coll)
		{
			return new ReadOnlyPersonCollection(coll);
		}
Example #6
0
		public ObjectCollection(ObjectCollection coll)
		{
			this.InnerList.AddRange(coll);
		}