[.net] Variable Question

Started by
0 comments, last by mutex 18 years, 8 months ago
I've just made a DLL and one of the variables in it is a public static because the other classes need to make use of it. Is there any way to make a variable public within the DLL but private to the application using the DLL?
Advertisement
Try internal access, which makes the thing accessibly only within the same assembly.

This topic is closed to new replies.

Advertisement