public vs internal csharp

Code Example - public vs internal csharp

                
                        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.