示例#1
0
 /// <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
 /// <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>)
 {
 }