what is the meaning of the dollar sign after a method name in vb.net
like this:
Replace$("EG000000", "0", "")
|
what is the meaning of the dollar sign after a method name in vb.net like this: Replace$("EG000000", "0", "") | |||
|
feedback
|
|
Old type notifier - see this Some other old ones:
Still exist in VB.Net for the sake of backward compatibility... | |||||
feedback
|
|
In "classic" VB, there were two versions of the built in-string functions. Let me use
This distinction still exists in modern-day VBA. I suspect that the reason behind this is that strings in VBA cannot be In VB.NET, this distinction is no longer necessary: The non-$ functions do exactly the same as the $ functions, which are kept only for backwards compatibility with old code. | |||
|
feedback
|
|
What Heinzi said and to clear up the type character business
| |||
|
feedback
|