0
Code sample for internal and protected internal in C#
Hi @all, this is new for me. How works in deep this access modifiers(internal, protected internal) on C# a real sample?
1 Antwort
+ 5
internal is used when you want codes to be access only within the dame assembly.
Protected is used when you want codes to only be able to be accessable only by it's class/structure..