예제 #1
0
 public void copy(information other)
 {
     _code = other._code;
     _market = other._market;
     _name = other._name;
 }
예제 #2
0
 public information(int c, market m, string n)
 {
     _code = c;
     _market = m;
     _name = n;
 }