S
Shak
Hi
My code looks like the follwing:
namespace A.B.C
{
....
private void foo()
{
A.B.C.Properties.Settings.Default.Save();
Properties.Settings.Default.Save() //error
}
}
The error I'm getting is "Cannot access internal property "Properties"
here". Why not though? I thought I was in the correct namespace?
Shak
My code looks like the follwing:
namespace A.B.C
{
....
private void foo()
{
A.B.C.Properties.Settings.Default.Save();
Properties.Settings.Default.Save() //error
}
}
The error I'm getting is "Cannot access internal property "Properties"
here". Why not though? I thought I was in the correct namespace?
Shak