示例#1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="T:M138ADemo.KeyModel"/> class.
 /// </summary>
 /// <param name="other">Other.</param>
 public KeyModel(KeyModel other)
 {
     _key    = String.Copy(other._key);
     _keyarr = new string[_key.Length];
     CopyToArr();
     _idNumber = other._idNumber;
     _shift    = other._shift;
 }
示例#2
0
 /// <summary>
 /// Adds the key.
 /// </summary>
 /// <param name="k">K.</param>
 public void AddKey(KeyModel k)
 {
     keys.Add(k);
 }