X
Xarky
Hi,
Having the following scenario:
public class Parent
{
private string Parent_name;
public Parent()
{
this.Parent_name = "";
}
}
public class Child : Parent
{
public Child()
{
// I need to inherit the behaviour of the parent constructor
// and
// and new behaiour
}
}
Can someone help me out.
Thanks in Advance
Having the following scenario:
public class Parent
{
private string Parent_name;
public Parent()
{
this.Parent_name = "";
}
}
public class Child : Parent
{
public Child()
{
// I need to inherit the behaviour of the parent constructor
// and
// and new behaiour
}
}
Can someone help me out.
Thanks in Advance