There are 3 Projects in 1 Solution. Main manipulations I make from the main file in the 1st Project. However I need to call methods and use classes from the 3rd Project. For example:
– 3rd Project has:
public DataClasses1DataContext() : base(global::WindowsFormsApplication1.Properties.Settings.Default.mediaBorshchConnectionString, mappingSource)
{ OnCreated(); }
What is the right way to call it from my 1st Project?
DataClasses1DataContext borshch = new DataClasses1DataContext()