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

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