T
t f
Hi
Okay this should be a simple one...
In my solution i have 2 projects (one class library and one control
library) - they both share the name default namespace - question is I want
to be able to have settings persist for both librarys but have it contained
in one settings files (this is in the class library as the control library
uses the class library)...
i tried the following in the control library
global::mynamespace.Properties.Settings.Default.xxx
but it is inaccessible due to its protection level... how do i make it so
that the librarys share the same Settings?
is it impossible? if so should i just make a static class which returns the
value?
thanks
t f
Okay this should be a simple one...
In my solution i have 2 projects (one class library and one control
library) - they both share the name default namespace - question is I want
to be able to have settings persist for both librarys but have it contained
in one settings files (this is in the class library as the control library
uses the class library)...
i tried the following in the control library
global::mynamespace.Properties.Settings.Default.xxx
but it is inaccessible due to its protection level... how do i make it so
that the librarys share the same Settings?
is it impossible? if so should i just make a static class which returns the
value?
thanks
t f