using System; using GP = Science.Physics.GeneralPhysics; namespace ScienceTest.PhysicsTest.GeneralPhysicsTest { /// /// UnitTest /// public class UnitTest { public UnitTest() { } private string result; public string Result { get{return result;} } public void Compute() { GP.Length l = new GP.Length(); l.m = 12.0; result += GP.Unit.mksTOcgs(l).ToString() + "\r\n"; } } } //1200