using System; using L=Science.Physics.GeneralPhysics; namespace Serway.Chapter45 { /// /// Example01: The Energy Released in the Fission of 235U /// Calculate the energy released when 1.00 kg of 235U fissions, /// taking the disintegration energy per event to be Q = 208 MeV. /// public class Example01 { public Example01() { } private string result; public string Result { get{return result;} } public void Compute() { result = "Read the book!"; } } }