コード例 #1
0
 public SemilatticeValue(SemilatticeData type, int val)
 {
     Type       = type;
     ConstValue = val.ToString();
 }
コード例 #2
0
 public SemilatticeValue(SemilatticeData type, string str = null)
 {
     Type       = type;
     ConstValue = str;
 }