Go and Explore
Exploring my country on bike
Home
C#
Programming
Object Creation and Constructor in C#
Programming
Object Creation and Constructor in C#
By
Unknown
At 5:35:00 AM
0
using System;
namespace ArrayApplication
{
class MyArray
{
public MyArray(){
Console.WriteLine("Construtor Invoke");
}
static void Main(string[] args)
{
MyArray obj=new MyArray();
}
}
}
You Might Also Like
0 comments:
Post a Comment
Newer Post
Older Post
Home
Subscribe to:
Post Comments ( Atom )
0 comments:
Post a Comment