VB namespace to use or not to use ?
I am confused whether I should use any functions provided by microsoft.visualbasic namespace. This issue came about as I needed to check the ASCII character of the key pressed and used chr() function, this is a visualbasic namespace function and I noted also a line Microsoft.VisualBasic in the imports section.
My aim is that to make sure that
1. I do not use any VB.dll files.
2. Installation requires only the net framework
3. xcopy installations will be possible.
4. Do not have any incompatibility issues in the future.
Is it possible and is it advisable to not use any function which is microsoft.visualbasic name space.
Thanks