//using System; //Demo# 1 //class Demo //{ // public static void Main() // { // Console.WriteLine("Hello Interfaces"); // Console.ReadLine(); // } //} //interface abc //{ //} ///* // Output //Hello Interfaces // */ //Demo# 2 //class Demo //{ // public static void Main() // { // Console.WriteLine("Hello Interfaces"); // Console.ReadLine(); // } //} //interface abc //{ // int x; //} ///* // Output //error CS0525: Interfaces cannot contain fields // */ //Demo# 3 //class Demo //{ // public static void Main() // { // Console.WriteLine("Hello Interfaces"); // Console.ReadLine(); // } //} //interface abc //{ // void xyz() // ...