using System; using L=Science.Physics.GeneralPhysics; namespace Serway.Chapter28 { /// /// Example05: Finding by Symmetry Arguments /// Consider five resistors connected as shown in Figure 28.10a. /// Find the equivalent resistance between points a and b. /// public class Example05 { public Example05() { } private string result; public string Result { get{return result;} } public void Compute() { result+="Read the book!"; } } }