By
Unknown
At
5:36:00 AM
0
using System;
namespace ArrayApplication
{
class MyArray
{
public MyArray(){
Console.WriteLine("Construtor Invoke");
}
public void myfun(){
Console.WriteLine("Its a funtion under My Array class");
}
static void Main(string[] args)
{
MyArray obj=new MyArray();
obj.myfun();
}
}
}
You Might Also Like
0 comments:
Post a Comment