using System; using GP = Science.Physics.GeneralPhysics; namespace ScienceTest.PhysicsTest.GeneralPhysicsTest { /// /// ProtonTest /// public class ProtonTest { private string result; public string Result { get{return result;} } public ProtonTest() { } public void Compute() { GP.Neutron N = new GP.Neutron(); GP.Proton p = new GP.Proton(); result += N.MassINMeVPERcSQUARE.ToString() + "\r\n"; result += p.MassINMeVPERcSQUARE.ToString() + "\r\n"; } } } /* 939.57 938.28 */