Add() public method

public Add ( string name, object value ) : void
name string
value object
return void
 private static void CopyFields(AccountDataFieldList srcList, AccountDataFieldList dstList)
 {
     foreach (AccountDataField f in srcList)
     {
         dstList.Add(f.Name, f.Currency, f.Value);
     }
 }
Example #2
0
 private static void CopyFields(AccountDataFieldList srcList, AccountDataFieldList dstList)
 {
     foreach (AccountDataField f in srcList)
         dstList.Add(f.Name, f.Currency, f.Value);
 }