using System; using GP = Science.Physics.GeneralPhysics; namespace ScienceTest.PhysicsTest.GeneralPhysicsTest { /// /// EarthTest /// public class ElasticityTest { public ElasticityTest() { } private string result; public string Result { get{return result;} } public void Compute() { GP.Elasticity el = new GP.Elasticity(); el.YoungModulus = 10.0; el.BulkModulus = 23.0; result += el.YoungModulus.ToString() + " " + el.BulkModulus.ToString() + " "; } } } // 10 23