I have taken this struct definition from the Windows API CodePack:
public struct IconReference
{
//...
public IconReference(string moduleName, int resourceId)
: this()
{
//...
}
public IconReference(string refPath)
: this()
{
//...
}
//...
}
The problem is I don't understand how to translate those kind of constructors to Vb.Net.
What is exactlly the meaning of that : this()
?
When I use an online code translator, it translates it as Me.New()
, however, this fails at compilation because that struct does not have a parameterless ctor.