コード例 #1
0
ファイル: Program.cs プロジェクト: littlesun96/CSharpHW3
 public Money(decimal value, String currencyType)
 {
     this.value        = value;
     this.currencyType = CurrentTypes.addType(currencyType);
 }