using System; using L=Science.Physics.GeneralPhysics; namespace Serway.Chapter30 { /// /// Example11: Saturation Magnetization /// Estimate the saturation magnetization in a long /// cylinder of iron, assuming one unpaired electron /// spin per atom. /// public class Example11 { public Example11() { } private string result; public string Result { get{return result;} } public void Compute() { result = "Read the book!"; } } }