Welcome to oopsbox.com This is my first post
using System;
class HelloWorld
{
static void writeHelloWorld() {
Console.WriteLine("Welcome to oopsbox.com This is my first post");
}
static void Main() {
SimpleDelegate d = new SimpleDelegate(writeHelloWorld);
d();
}
}
using System;
class HelloWorld
{
static void writeHelloWorld() {
Console.WriteLine("Welcome to oopsbox.com This is my first post");
}
static void Main() {
SimpleDelegate d = new SimpleDelegate(writeHelloWorld);
d();
}
}
using System; class HelloWorld { static void writeHelloWorld() { Console.WriteLine("Welcome to oopsbox.com This is my first post"); } static void Main() { SimpleDelegate d = new SimpleDelegate(writeHelloWorld); d(); } }