using System;
class UsingExample {
static void Main() {
Console.WriteLine("example for 'using' keyword");
}
}
// since using System; is added in the beginning of the program
// no need to include it again with Console.WriteLine()
class UsingExample {
static void Main() {
Console.WriteLine("example for 'using' keyword");
}
}
// since using System; is added in the beginning of the program
// no need to include it again with Console.WriteLine()
No comments:
Post a Comment