using System; using L=Science.Physics.GeneralPhysics; namespace Serway.Chapter44 { /// /// Example10: Radioactive Dating /// A piece of charcoal containing 25.0 g of carbon is /// found in some ruins of an ancient city. The sample /// shows a 14C activity R of 250 decays/min. How long has /// the tree from which this charcoal came been dead? /// public class Example10 { public Example10() { } private string result; public string Result { get{return result;} } public void Compute() { result = "Read the book!"; } } }