In C#, what's the difference between A::B and A.B? The only difference I've noticed is that only :: can be used with global, but other than that, what's the difference? Why do they both exist?
| |||
|
feedback
|
|
with :: you can do things like...
and there are times when . is ambiguous so :: is needed. here's the example from the C# language spec
| |||||
feedback
|
|
the :: operator only works with aliases global is a special system provided alias. so ... this works:
but not this:
This lets you escape from the hell of sub namespaces that can come about when you are integrating with a library where they have:
And you in you code have
global:: lets you find the real System. | |||||||||
feedback
|