I\'m wondering if it\'s possible to access internal class variables from other project in c#. I know that is impossible in regular use, I explain it below.
I have on
You can use the InternalsVisibleTo attribute and provide the name of a specific assembly that can see the internal types in your assembly.
That being said.. I think you are bordering on over-designing this. If the Settings class belongs only to Assembly A... don't put it in Assembly B... put it in Assembly A.