コード例 #1
0
ファイル: DictWrapper.cs プロジェクト: kisflying/kion
		/// <summary>
		/// Create the specified store.
		/// </summary>
		/// <param name="store">The store.</param>
		/// <returns></returns>
		public new static DictWrapper _( ExtList< Item > store ) {
			var temp = new DictWrapper { DictStore = store };
			return temp;
		}
コード例 #2
0
ファイル: DictWrapper.cs プロジェクト: kisflying/kion
		/// <summary>
		/// Create this instance.
		/// </summary>
		/// <returns></returns>
		public new static DictWrapper _() {
			var temp = new DictWrapper { DictStore = Repository._().Store };

			return temp;
		}