コード例 #1
0
 public PropertyBlockValue(int line, string name, PropertyBlockValueSolver solver) : base(line, PropertyBlockEntryType.Value, name)
 {
     m_value  = null;
     m_solver = solver;
 }
コード例 #2
0
 public PropertyBlockValue(int line, string name, object value) : base(line, PropertyBlockEntryType.Value, name)
 {
     m_value  = value;
     m_solver = null;
 }