There are 3 projects in one solution. I do basic manipulations from the main file in the 1st project. However, I need to call methods and use classes from the 3rd project. For instance:
- The 3rd project has:
public DataClasses1DataContext() : base(global::WindowsFormsApplication1.Properties.Settings.Default.mediaBorshchConnectionString, mappingSource) { OnCreated(); }
How to name it from my first project?
DataClasses1DataContext borshch = new DataClasses1DataContext()
source share