コード例 #1
0
ファイル: QuoteData.cs プロジェクト: williamxhero/SF
 public void copy(information other)
 {
     _code = other._code;
     _market = other._market;
     _name = other._name;
 }
コード例 #2
0
ファイル: QuoteData.cs プロジェクト: williamxhero/SF
 public information(int c, market m, string n)
 {
     _code = c;
     _market = m;
     _name = n;
 }