亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? opmlitemcollection.cs

?? 基于.Net環境下c#實現的國人自己的Blog平臺,基于.Text的核心技術,但做了漢化以及改寫了一部分的核心代碼,值得研究學習
?? CS
?? 第 1 頁 / 共 4 頁
字號:
			}

		}

		#endregion

		#region Class ReadOnlyList

		[Serializable]
		private sealed class ReadOnlyList : OpmlItemCollection
		{

			private OpmlItemCollection _collection;

			internal ReadOnlyList(OpmlItemCollection collection) : base(Tag.Default)
			{
				this._collection = collection;
			}

			#region Public Properties

			public override int Capacity
			{
				get { return this._collection.Capacity; }
				set { throw new NotSupportedException("Read-only collections cannot be modified."); }
			}

			public override int Count
			{
				get { return this._collection.Count; }
			}

			public override bool IsFixedSize
			{
				get { return true; }
			}

			public override bool IsReadOnly
			{
				get { return true; }
			}

			public override bool IsSynchronized
			{
				get { return this._collection.IsSynchronized; }
			}

			public override OpmlItem this[int index]
			{
				get { return this._collection[index]; }
				set { throw new NotSupportedException("Read-only collections cannot be modified."); }
			}

			public override object SyncRoot
			{
				get { return this._collection.SyncRoot; }
			}

			#endregion

			#region Public Methods

			public override int Add(OpmlItem value)
			{
				throw new NotSupportedException("Read-only collections cannot be modified.");
			}

			public override void AddRange(OpmlItemCollection collection)
			{
				throw new NotSupportedException("Read-only collections cannot be modified.");
			}

			public override void AddRange(OpmlItem[] array)
			{
				throw new NotSupportedException("Read-only collections cannot be modified.");
			}

			public override int BinarySearch(OpmlItem value)
			{
				return this._collection.BinarySearch(value);
			}

			public override void Clear()
			{
				throw new NotSupportedException("Read-only collections cannot be modified.");
			}

			public override object Clone()
			{
				return new ReadOnlyList((OpmlItemCollection) this._collection.Clone());
			}

			public override bool Contains(OpmlItem value)
			{
				return this._collection.Contains(value);
			}

			public override void CopyTo(OpmlItem[] array)
			{
				this._collection.CopyTo(array);
			}

			public override void CopyTo(OpmlItem[] array, int arrayIndex)
			{
				this._collection.CopyTo(array, arrayIndex);
			}

			public override IOpmlItemEnumerator GetEnumerator()
			{
				return this._collection.GetEnumerator();
			}

			public override int IndexOf(OpmlItem value)
			{
				return this._collection.IndexOf(value);
			}

			public override void Insert(int index, OpmlItem value)
			{
				throw new NotSupportedException("Read-only collections cannot be modified.");
			}

			public override void Remove(OpmlItem value)
			{
				throw new NotSupportedException("Read-only collections cannot be modified.");
			}

			public override void RemoveAt(int index)
			{
				throw new NotSupportedException("Read-only collections cannot be modified.");
			}

			public override void RemoveRange(int index, int count)
			{
				throw new NotSupportedException("Read-only collections cannot be modified.");
			}

			public override void Sort()
			{
				throw new NotSupportedException("Read-only collections cannot be modified.");
			}

			public override OpmlItem[] ToArray()
			{
				return this._collection.ToArray();
			}

			public override void TrimToSize()
			{
				throw new NotSupportedException("Read-only collections cannot be modified.");
			}

			#endregion
		}

		#endregion

		#region Class SyncList

		[Serializable]
		private sealed class SyncList : OpmlItemCollection
		{

			private OpmlItemCollection _collection;
			private object _root;

			internal SyncList(OpmlItemCollection collection) : base(Tag.Default)
			{

				this._root = collection.SyncRoot;
				this._collection = collection;
			}

			#region Public Properties

			public override int Capacity
			{
				get
				{
					lock (this._root)
						return this._collection.Capacity;
				}
				set
				{
					lock (this._root)
						this._collection.Capacity = value;
				}
			}

			public override int Count
			{
				get
				{
					lock (this._root)
						return this._collection.Count;
				}
			}

			public override bool IsFixedSize
			{
				get { return this._collection.IsFixedSize; }
			}

			public override bool IsReadOnly
			{
				get { return this._collection.IsReadOnly; }
			}

			public override bool IsSynchronized
			{
				get { return true; }
			}

			public override OpmlItem this[int index]
			{
				get
				{
					lock (this._root)
						return this._collection[index];
				}
				set
				{
					lock (this._root)
						this._collection[index] = value;
				}
			}

			public override object SyncRoot
			{
				get { return this._root; }
			}

			#endregion

			#region Public Methods

			public override int Add(OpmlItem value)
			{
				lock (this._root)
					return this._collection.Add(value);
			}

			public override void AddRange(OpmlItemCollection collection)
			{
				lock (this._root)
					this._collection.AddRange(collection);
			}

			public override void AddRange(OpmlItem[] array)
			{
				lock (this._root)
					this._collection.AddRange(array);
			}

			public override int BinarySearch(OpmlItem value)
			{
				lock (this._root)
					return this._collection.BinarySearch(value);
			}

			public override void Clear()
			{
				lock (this._root)
					this._collection.Clear();
			}

			public override object Clone()
			{
				lock (this._root)
					return new SyncList((OpmlItemCollection) this._collection.Clone());
			}

			public override bool Contains(OpmlItem value)
			{
				lock (this._root)
					return this._collection.Contains(value);
			}

			public override void CopyTo(OpmlItem[] array)
			{
				lock (this._root)
					this._collection.CopyTo(array);
			}

			public override void CopyTo(OpmlItem[] array, int arrayIndex)
			{
				lock (this._root)
					this._collection.CopyTo(array, arrayIndex);
			}

			public override IOpmlItemEnumerator GetEnumerator()
			{
				lock (this._root)
					return this._collection.GetEnumerator();
			}

			public override int IndexOf(OpmlItem value)
			{
				lock (this._root)
					return this._collection.IndexOf(value);
			}

			public override void Insert(int index, OpmlItem value)
			{
				lock (this._root)
					this._collection.Insert(index, value);
			}

			public override void Remove(OpmlItem value)
			{
				lock (this._root)
					this._collection.Remove(value);
			}

			public override void RemoveAt(int index)
			{
				lock (this._root)
					this._collection.RemoveAt(index);
			}

			public override void RemoveRange(int index, int count)
			{
				lock (this._root)
					this._collection.RemoveRange(index, count);
			}

			public override void Sort()
			{
				lock (this._root)
					this._collection.Sort();
			}

			public override OpmlItem[] ToArray()
			{
				lock (this._root)
					return this._collection.ToArray();
			}

			public override void TrimToSize()
			{
				lock (this._root)
					this._collection.TrimToSize();
			}

			#endregion
		}

		#endregion
	}

	#endregion
}

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
欧美韩日一区二区三区| 亚洲精品久久嫩草网站秘色| 国产成人精品aa毛片| 亚洲最新在线观看| 久久一日本道色综合| 在线观看三级视频欧美| 国产高清久久久| 五月天激情综合| 国产精品福利影院| 欧美精品一区二区久久久| 色欲综合视频天天天| 狠狠色丁香婷婷综合| 亚洲18女电影在线观看| 国产精品毛片久久久久久久| 日韩欧美卡一卡二| 欧美日韩视频专区在线播放| av欧美精品.com| 国产大片一区二区| 免费在线看成人av| 亚洲久草在线视频| 国产女主播视频一区二区| 欧美一卡二卡三卡| 欧美日韩一卡二卡| 色av一区二区| 成人免费毛片高清视频| 激情欧美日韩一区二区| 日韩精彩视频在线观看| 亚洲男人的天堂一区二区| 国产精品情趣视频| 久久久电影一区二区三区| 欧美变态tickling挠脚心| 欧美日韩成人综合| 欧美综合天天夜夜久久| 色婷婷综合五月| 99re这里只有精品6| gogogo免费视频观看亚洲一| 丁香六月久久综合狠狠色| 国产精品538一区二区在线| 韩国三级电影一区二区| 另类小说一区二区三区| 免费人成黄页网站在线一区二区| 性欧美疯狂xxxxbbbb| 亚洲综合激情小说| 亚洲午夜免费视频| 亚洲高清在线视频| 亚洲国产综合人成综合网站| 一区二区三区精品在线| 亚洲国产成人tv| 午夜精品久久一牛影视| 免费观看久久久4p| 九九精品一区二区| 国产一本一道久久香蕉| 国产成人综合亚洲网站| 成人伦理片在线| 99久久精品国产网站| 一本到三区不卡视频| 欧美性感一类影片在线播放| 555夜色666亚洲国产免| 日韩精品在线一区二区| 国产午夜三级一区二区三| 国产精品另类一区| 亚洲乱码国产乱码精品精小说| 一区二区高清在线| 日韩专区在线视频| 韩国精品主播一区二区在线观看| 国产精品99久久久久| 99久久婷婷国产综合精品| 在线亚洲+欧美+日本专区| 欧美肥妇bbw| 久久一区二区视频| 亚洲特级片在线| 日韩综合在线视频| 国产成人av网站| 日本伦理一区二区| 2欧美一区二区三区在线观看视频 337p粉嫩大胆噜噜噜噜噜91av | 精品嫩草影院久久| 国产精品久久久一区麻豆最新章节| 亚洲六月丁香色婷婷综合久久 | 日韩成人精品视频| 国产一区二区视频在线| 91小视频免费观看| 欧美一级免费大片| 欧美激情在线一区二区三区| 亚洲一区二区三区中文字幕 | 韩国女主播成人在线| 91在线视频播放| 日韩精品综合一本久道在线视频| 国产精品久久久久久久久免费桃花 | 91精品综合久久久久久| 国产日韩在线不卡| 亚洲电影在线播放| 国产福利一区在线观看| 欧美日韩五月天| 国产精品美女久久久久久久| 午夜精品一区二区三区三上悠亚| 国产在线视频一区二区三区| 色婷婷亚洲精品| 久久伊99综合婷婷久久伊| 亚洲电影一级黄| jiyouzz国产精品久久| 欧美一级xxx| 亚洲精品ww久久久久久p站| 国产自产2019最新不卡| 欧美性大战久久久久久久蜜臀 | 亚洲国产aⅴ天堂久久| 成人一级黄色片| 日韩午夜在线观看视频| 一区二区激情小说| 成人美女视频在线看| 欧美va亚洲va在线观看蝴蝶网| 亚洲精品久久嫩草网站秘色| 国产91丝袜在线播放九色| 5月丁香婷婷综合| 亚洲一卡二卡三卡四卡| k8久久久一区二区三区| 精品国产电影一区二区| 日韩福利电影在线观看| 欧美视频一二三区| 综合久久久久久| 成人性视频免费网站| 精品国产三级a在线观看| 日日欢夜夜爽一区| 欧美夫妻性生活| 亚洲一区二区精品久久av| 91麻豆自制传媒国产之光| 国产精品欧美经典| 国产盗摄精品一区二区三区在线 | 亚洲人成网站精品片在线观看| 国产成人综合自拍| 国产午夜精品久久| 国产精一区二区三区| 欧美成人伊人久久综合网| 秋霞影院一区二区| 欧美一区二区三区在线观看| 日韩黄色免费网站| 欧美无砖专区一中文字| 亚洲一区二区成人在线观看| 欧美一a一片一级一片| 亚洲免费观看高清| 色播五月激情综合网| 亚洲电影一级黄| 9191国产精品| 日韩国产欧美在线播放| 日韩一级大片在线观看| 麻豆精品久久精品色综合| 欧美成人高清电影在线| 狠狠色综合日日| 国产日韩高清在线| 972aa.com艺术欧美| 亚洲欧美偷拍另类a∨色屁股| 一本色道久久综合亚洲91| 亚洲国产cao| 日韩欧美一区在线观看| 久久狠狠亚洲综合| 久久久久久久久久久黄色| 国产99久久久国产精品免费看| 国产精品欧美一区二区三区| 91免费版在线| 石原莉奈在线亚洲二区| 精品国产乱码久久久久久牛牛| 国产99精品视频| 亚洲精品免费一二三区| 91精品欧美福利在线观看| 国产在线精品视频| 国产精品传媒视频| 欧美狂野另类xxxxoooo| 国产精品综合一区二区三区| 国产精品欧美久久久久无广告 | 久久久久88色偷偷免费| 99视频国产精品| 亚洲国产精品一区二区www在线| 欧美精品日韩一区| 国产高清在线观看免费不卡| 亚洲欧美日韩久久精品| 337p亚洲精品色噜噜| 国产精品一区二区三区四区| 亚洲精品久久久久久国产精华液| 在线综合视频播放| 国产91丝袜在线观看| 亚洲va韩国va欧美va| 久久综合色婷婷| 欧洲生活片亚洲生活在线观看| 久久电影网站中文字幕| 亚洲精品免费电影| 精品国产百合女同互慰| 91丨porny丨蝌蚪视频| 免费高清在线一区| 亚洲欧洲在线观看av| 欧美一级日韩免费不卡| av一二三不卡影片| 激情综合五月天| 一区二区三区四区不卡在线| 欧美精品一区二区三区久久久| 欧美午夜理伦三级在线观看| 韩国v欧美v亚洲v日本v| 亚洲午夜久久久久久久久电影院| 欧美精品一区二区三区高清aⅴ| 在线观看欧美日本| 成人av在线网| 国产一区二区三区久久悠悠色av|