In c# you can have
public class Foo
{
public Foo(string name)
{
//do something
}
public Foo(string name, int bar) : this(name)
{
//do something
}
}
Is there a VB.Net equivalent?
|
|
|
|
|
|
|
It looks similar to Java in this respect:
Note that you have to use |
||
|