I am using a proprietary language called VGL which really does not type variables at all. For Example I could Declare variables as such:
DECLARE thisvariable, thatvariable, anothervariable
all three of the above variables can be used in any different way I choose, string, integer, character, float, Boolean etc...
The product in it's next version is going to start incorporating C# into it's program scripting instead of VGL.
My thinking is to use a modified Hungarian Notation to at least show the intended use of a variable and make the code a little more readable i.e. integer intVariableName, float fltVariableName etc... but try to stay to close as possible to the .net naming convention as we can.
Does anyone have a better opinion of a naming convention to use?