I have a C# class (a lot of lines). I want to use this class in my VB.NET project.
So, I tried to add the .cs file to my VB.NET project and then call it by:
MyclassName.VoidName()
It's not working.
('MycalssName' is not declared. It may be inaccessible due to its protection level.)
How can I use a C# class in my VB.NET project?
Tim Schmelter's comment is your answer.