How can two classes in separate projects communicate between one another?
If ClassA references ClassB I can access methods of ClassB in ClassA ... .... How can I make use of Interfaces to access methods of ClassA in ClassB.
Indeed do the classes even need to be linked if I make use of Interfaces?
Can someone please provide me with an example.
Coding in C# 2.0.
Any help appreciated.
Confused!