コード例 #1
0
        public MobileAccount(string phoneNumber, Dictionary <string, string> addressBook)
        {
            PhoneNumber = phoneNumber;
            valueList   = addressBook.Values.ToList();
            keyList     = addressBook.Keys.ToList();

            Money = MobileOperator.GetBalance(this);
        }
コード例 #2
0
 public MobileAccount(string phoneNumber)
 {
     PhoneNumber = phoneNumber;
     Money       = MobileOperator.GetBalance(this);
 }