using System; using GP = Science.Physics.GeneralPhysics; namespace ScienceTest.PhysicsTest.GeneralPhysicsTest { /// /// LengthTest /// public class LengthTest { public LengthTest() { } private string result; public string Result { get{return result;} } public void Compute() { GP.Length L = new GP.Length(); L.m = 12.0; result += L.ToString()+"\r\n"; } } } // 12 +/- 0 (m)