FastQuant.AccountDataFieldList.Add C# (CSharp) Méthode

Add() public méthode

public Add ( string name, object value ) : void
name string
value object
Résultat void
        public void Add(string name, object value) => Add(name, string.Empty, value);

Same methods

AccountDataFieldList::Add ( string name, string currency, object value ) : void

Usage Example

 private static void CopyFields(AccountDataFieldList srcList, AccountDataFieldList dstList)
 {
     foreach (AccountDataField f in srcList)
     {
         dstList.Add(f.Name, f.Currency, f.Value);
     }
 }
All Usage Examples Of FastQuant.AccountDataFieldList::Add