using System; using L=Science.Physics.GeneralPhysics; namespace Serway.Chapter01 { /// /// Example06: It is a long way to San Jose /// Estimate the number of steps a person would /// take walking from New York to Los Angeles. /// public class Example06 { public Example06() { } private string result; public string Result { get{return result;} } public void Compute() { L.Length l = new L.Length(); l.Magnitude = 3000.0; double x = L.Unit.mileTOm(l)*2.0; // 2 steps per 1 meter result=x.ToString(); } } } //9654000