Get() private method

private Get ( int index, String &name, String &value ) : void
index int
name String
value String
return void
Beispiel #1
0
 private void WriteAttributeList(AttributeList attrList)
 {
     for (int i = 0; i < attrList.Count; i++)
     {
         string str;
         string str2;
         attrList.Get(i, out str, out str2);
         this.InternalWrite(" ");
         this.InternalWrite(str);
         this.InternalWrite("=");
         this.InternalWrite("\"");
         this.InternalWrite(str2);
         this.InternalWrite("\"");
     }
 }
 private void WriteAttributeList(AttributeList attrList)
 {
     for (int i = 0; i < attrList.Count; i++)
     {
         string str;
         string str2;
         attrList.Get(i, out str, out str2);
         this.InternalWrite(" ");
         this.InternalWrite(str);
         this.InternalWrite("=");
         this.InternalWrite("\"");
         this.InternalWrite(str2);
         this.InternalWrite("\"");
     }
 }
Beispiel #3
0
 void WriteAttributeList(AttributeList attrList)
 {
     for (int i=0; i<attrList.Count; i++)
     {
         String aName;
         String aValue;
         attrList.Get(i, out aName, out aValue);
         InternalWrite(" ");
         InternalWrite(aName);
         InternalWrite("=");
         InternalWrite("\"");
         //InternalWrite(Escape(aValue));
         InternalWrite(aValue);
         InternalWrite("\"");
     }
 } // WriteAttributeList