Answers for "public vs internal c#"

C#
2

public vs internal c#

public: The type or member can be accessed by any other code in the same assembly or another assembly that references it.
internal: The type or member can be accessed by any code in the same assembly, but not from another assembly.
Posted by: Guest on December-16-2021

C# Answers by Framework

Browse Popular Code Answers by Language