Changeset 1907
- Timestamp:
- 11/18/09 20:42:17 (3 months ago)
- Files:
-
- 1 modified
-
trunk/Projects/Axiom/Engine/Math/Real.cs (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Projects/Axiom/Engine/Math/Real.cs
r1906 r1907 216 216 public Real( string value ) 217 217 { 218 Numeric.TryParse( value, out this._value );218 this._value = Numeric.Parse( value ); 219 219 } 220 220 … … 368 368 { 369 369 Real retval; 370 Numeric.TryParse( value, out retval._value );370 retval._value = Numeric.Parse( value ); 371 371 return retval; 372 372 }
