I was searching on way to prevent an unknown party from attaching their own Plug In containing malicious code into my application. And I ran across this post
It suggests to Strong Name the assembly and check it is strong named with the expected key on load.
However, when I look at the MSDN documentation regarding Strong Named Assemblies at this site
There is a Caution that says
Do not rely on strong names for security. They provide a unique identity only.
What does this mean? What security are they referring to, and is this relevant to the answer in the above stack overflow link I provided?