namespace CuriousTabConsoleApplication
{
class MyProgram
{
static void Main(string[] args)
{
import n1;
Point x = new Point();
x.fun();
import n2;
Point y = new Point();
y.fun();
}
}
}
import n1;
import n2;
namespace CuriousTabConsoleApplication
{
class MyProgram
{
static void Main(string[] args)
{
n1.Point x = new n1.Point();
x.fun();
n2.Point y = new n2.Point();
y.fun();
}
}
}
namespace CuriousTabConsoleApplication
{
class MyProgram
{
static void Main(string[] args)
{
using n1;
Point x = new Point();
x.fun();
using n2;
Point y = new Point();
y.fun();
}
}
}
using n1;
using n2;
namespace CuriousTabConsoleApplication
{
class MyProgram
{
static void Main(string[] args)
{
n1.Point x = new n1.Point();
x.fun();
n2.Point y = new n2.Point();
y.fun();
}
}
}
using n1;
using n2;
namespace CuriousTabConsoleApplication
{
class MyProgram
{
static void Main(string[] args)
{
n1.Point x = new n1.Point();
x.fun();
n2.Point y = new n2.Point();
y.fun();
}
}
}
namespace College { namespace Lib { class Book { public void Issue() { // Implementation code } } class Journal { public void Issue() { // Implementation code } } } }
College.Lib.Book b = new College.Lib.Book(); b.Issue();
Book b = new Book(); b.Issue();
using College.Lib; Book b = new Book(); b.Issue();
using College; Lib.Book b = new Lib.Book(); b.Issue();
using College.Lib.Book; Book b = new Book(); b.Issue();
using Microsoft.VisualBasic; using System.Windows.Forms; MessageBox.Show("Wait for a" + ControlChars.CrLf + "miracle");
using System.Windows.Forms;
using CtrlChars = Microsoft.VisualBasic.ControlChars;
MessageBox.Show("Wait for a" + CrLf + "miracle");
using Microsoft.VisualBasic;
using System.Windows.Forms;
CtrlChars = ControlChars;
MessageBox.Show("Wait for a" + CtrlChars.CrLf + "miracle");
using Microsoft.VisualBasic;
using System.Windows.Forms;
CtrlChars = ControlChars;
MessageBox.Show ("Wait for a" + CrLf + "miracle");
using System.Windows.Forms;
using CtrlChars = Microsoft.VisualBasic.ControlChars;
MessageBox.Show("Wait for a" + CtrlChars.CrLf + "miracle");
using System.Windows.Forms;
using CtrlChars = Microsoft.VisualBasic.ControlChars;
MessageBox.Show("Wait for a" + CtrlChars.CrLf + "miracle");
import System;
namespace CuriousTabConsoleApplication
{
class MyProgram
{
static void Main(string[] args)
{
Console.WriteLine("Hello C#.NET");
}
}
}
using System;
namespace CuriousTabConsoleApplication
{
class MyProgram
{
static void Main(string[ ] args)
{
WriteLine("Hello C#.NET");
}
}
}
using System.Console;
namespace CuriousTabConsoleApplication
{
class MyProgram
{
static void Main (string[ ] args)
{
WriteLine("Hello C#.NET");
}
}
}
using System;
namespace CuriousTabConsoleApplication
{
class MyProgram
{
static void Main(string[] args)
{
Console.WriteLine("Hello C#.NET");
}
}
}
using System;
namespace CuriousTabConsoleApplication
{
class MyProgram
{
static void Main(string[] args)
{
Console.WriteLine("Hello C#.NET");
}
}
}
using System.Windows.Forms; ListBox lb = new ListBox();
using LBControl = System.Windows.Forms; LBControl lb = new LBControl();
System.Windows.Forms.ListBox lb = new System.Windows.Forms.ListBox();
using LBControl lb = new System.Windows.Forms.ListBox;
using LBControl = System.Windows.Forms.ListBox; LBControl lb = new LBControl();
Comments
There are no comments.Copyright ©CuriousTab. All rights reserved.