using System; using L=Science.Physics.GeneralPhysics; namespace Serway.Chapter34 { /// /// Example03: Sweeping the Solar System /// A great amount of dust exists in interplanetary space. /// Although in theory these dust particles can vary in /// size from molecular size to much larger, very /// little of the dust in our solar system is smaller /// than about 0.2 \mu m. Why? /// public class Example03 { public Example03() { } private string result; public string Result { get{return result;} } public void Compute() { result = "Read the book!"; } } }