I am a VB.NET developer and I was trying to use this library called Raw Input Sharp ( http://www.jstookey.com/arcade/rawmouse/ ) which allows me to receive raw data from multiple mice at once. The library was originally written in C# but due to the fact that I used .NET, it does not matter what the original language was.
I referenced it and got an error saying that the lib had multiple definitions with the same name. After about hours of struggle, I realized that in c# we have case sensitive while the opposite in vb. e.g. The structure RAWMOUSE coincided with the class RawMouse.
What do I do now?