Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSHARP

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.
 
PREVIOUS NEXT
Tagged: #public #internal
ADD COMMENT
Topic
Name
7+9 =