Is it possible to create a routine in VB.NET with a name-based parameter array?
The WebMethod attribute built into the framework is used exactly this way:
WebMethod(BufferResponse:=False)
Specifically, I'd like to use it in a class' constructor. I'd like something similar to this:
New MyObject(id:=10,buffer:=True)
I'm not even sure what the terminology is for this kind of parameter list, so I can't even find it when searching.