Excuse the incredibly silly question but im new to C# . I just can’t figure out how to use classes from one Project in another Project.
Lets say I want to take a string from Project1 to Project2 and have Project2 print said string .
I reference Project2 from Project1 with the “add reference” menu , then I add “using Project2” and then I write this to trying and call "print" from "ClassA" in "Project2".
Project2.ClassA Classa = new Project2.ClassA();
Console.WriteLine(Classa.print);
but all i get are Error messages .
so can anyone please give a step by step explanation of EXACTLY why I need to do ?