top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

What is the use of strong names?

0 votes
226 views
What is the use of strong names?
posted Apr 4, 2017 by anonymous

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

1 Answer

0 votes

A strong name consists of the assembly's identity — its simple text name, version number, and culture information (if provided) — plus a public key and a digital signature.
You can use strong naming to ensure that when you load a DLL you get exactly the DLL you were expecting and not some other DLL that happens to have the same name.

answer Apr 17, 2017 by Shweta Singh
Similar Questions
+3 votes

How to Sign an Assembly with a Strong Name?

+1 vote

I am trying to get all the collection names from MongoDb server using C# code using db.GetCollectionNames() method.

I have 12 collections in my database, but the above method returns an empty list. I have verified that I am referring to the correct database. What am I doing wrong? Or if there is an alternate way?

...