Ejemplo n.º 1
0
        public static void SetWidthViolatingLsp(Rectangle r)
        {
            r.Width = 32;

            Console.WriteLine(r.Height);
            Console.WriteLine(r.Width);
        }
Ejemplo n.º 2
0
 public static void SetHeightViolatingLsp(Rectangle r)
 {
     r.Height = 10;
 }