M
murat oguzalp
i want to call base and this constructor at the same time. is is possible?
i mean:
B(int a, int b, int c):base(a):this(b)
{
// do something with c
}
at java i used to do that:
B(int a, int b, int c)
{
super (a);
this(b);
// do something with c
}
and if yes, how is its syntax.
thanks in advance
alpos
i mean:
B(int a, int b, int c):base(a):this(b)
{
// do something with c
}
at java i used to do that:
B(int a, int b, int c)
{
super (a);
this(b);
// do something with c
}
and if yes, how is its syntax.
thanks in advance
alpos