I'm trying to create a static class (IntNode
, IntList
) that I would be able to access through any project by using the class name.
I've saved the file name as the class name (IntNode.cs), and I added public
before the class name, but still it is not recognized on other projects.
What else I'm missing?