public Integer(BeEncode.Integer integer)
 {
     theInteger = integer.IntegerValue;
 }
Beispiel #2
0
 public List(BeEncode.List list)
 {
     foreach (BeType element in list.elements)
         this.elements.Add(element);
 }
 public String(BeEncode.String theString)
 {
     this.theString = theString.StringValue;
 }
 public Dictionary(BeEncode.Dictionary dictionary)
 {
     this.elements = (Hashtable)dictionary.elements.Clone();
 }