FastQuant.AccountDataManager.CopyFields C# (CSharp) Méthode

CopyFields() private static méthode

private static CopyFields ( AccountDataFieldList srcList, AccountDataFieldList dstList ) : void
srcList AccountDataFieldList
dstList AccountDataFieldList
Résultat void
        private static void CopyFields(AccountDataFieldList srcList, AccountDataFieldList dstList)
        {
            foreach (AccountDataField f in srcList)
                dstList.Add(f.Name, f.Currency, f.Value);
        }
    }