コード例 #1
0
ファイル: Stash.cs プロジェクト: Eurekode/ScriptStash.Net
 /// <summary>
 /// Empty constructor.
 /// { Note : Use the FillStash(..) method to fill the stash. }
 /// </summary>
 public Stash()
 {
     _scripts = new Dictionary <string, Script>();
     _tokens  = new Tokens();
 }
コード例 #2
0
ファイル: Tokens.cs プロジェクト: Eurekode/ScriptStash.Net
 /// <summary>
 /// Copy constructor from other Tokens class instance.
 /// </summary>
 /// <param name="tokens">Source tokens of key:values to build the new tokens object.</param>
 public Tokens(Tokens tokens) : base(tokens as Dictionary <string, string>)
 {
 }