예제 #1
0
파일: Program.cs 프로젝트: wzugang/XAPI2
 static void OnRspQryTradingAccount(object sender, ref AccountField account, int size1, bool bIsLast)
 {
 }
예제 #2
0
파일: Extensions.cs 프로젝트: yawsh/XAPI2
 public static string ToFormattedString([In] this AccountField field)
 {
     return(string.Format("[AccountID={0};CurrencyID={1};Balance={2};Available={3}]",
                          field.AccountID, field.CurrencyID, field.Balance, field.Available));
 }
예제 #3
0
        static void OnRspQryTradingAccount(object sender, ref AccountField account, int size1, bool bIsLast)
        {

        }
예제 #4
0
파일: Extensions.cs 프로젝트: wremin/XAPI2
 public static string ToFormattedString([In] this AccountField field)
 {
     return(string.Format("[AccountID={0};CurrencyID={1};Balance={2};Available={3};Deposit={4};Withdraw={5}]",
                          field.AccountID, field.CurrencyID, field.Balance, field.Available, field.Deposit, field.Withdraw));
 }