By
Unknown
At
5:38:00 AM
0
using System;
namespace ArrayApplication
{
class MyArray
{
public MyArray(){
Console.WriteLine("Construtor Invoke");
}
public void myfun(int a){
Console.WriteLine("User Pass the value = "+a);
}
static void Main(string[] args)
{
MyArray obj=new MyArray();
obj.myfun(20);
}
}
}
You Might Also Like
0 comments:
Post a Comment