Welcome to oopsbox.com This is my first post

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
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();
  }
}

Published by Man Friday

Application Developer, Photographer and WordPress aficionado. Particularly interested in relational database design, In usability, UX and accessibility on software development. I just wear glasses, Lives in Ubonratchathani, Thailand.