D DaTurk Jul 19, 2007 #1 Hi, if I declare a delegate as private, within a namespace, what's the scope?
B Ben Voigt [C++ MVP] Jul 19, 2007 #2 DaTurk said: Hi, if I declare a delegate as private, within a namespace, what's the scope? Click to expand... According to the docs, private for non-members means inaccessible outside the assembly, therefore it's similar to C# "internal".
DaTurk said: Hi, if I declare a delegate as private, within a namespace, what's the scope? Click to expand... According to the docs, private for non-members means inaccessible outside the assembly, therefore it's similar to C# "internal".