Constructors calling other constructors in vb.net a la c#

Viewed 23371

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?

1 Answers
Related