Exemplo n.º 1
0
 public static string BreakWalls(this OrdinaryHuman h, double wallDensity)
 {
     return("I broke through a wall of " + wallDensity + " density.");
 }
Exemplo n.º 2
0
        static void Main(string[] args)
        {
            OrdinaryHuman steve = new OrdinaryHuman(185);

            Console.WriteLine(steve.BreakWalls(89.2));
        }