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