using System; using GP = Science.Physics.GeneralPhysics; namespace ScienceTest.PhysicsTest.GeneralPhysicsTest { /// /// AreaTest /// public class AreaTest { private string result; public string Result { get{return result;} } public AreaTest() { } public void Compute() { GP.Length l = new GP.Length(); l.m = 2.0; GP.Length h = new GP.Length(); h.m = 4.0; GP.Area a = new GP.Area(l,h); result += a.mSQUARE.ToString() + "\r\n"; } } } // 8