Reputation: 7092
Can often be seen a PublicKeyToken
for an assembly, for example:
C1.Win.C1Input.C1NumericEdit, C1.Win.C1Input.4, Version=4.0.20131.33296, Culture=neutral, PublicKeyToken=7e7ff60f0c214f9a
What is this part of the line mean?
Upvotes: 1
Views: 680
Reputation: 120937
The PublicKeyToken
identifies the key that was used to sign a strong-named .net assembly. Read more about Strong-Named Assemblies here.
Upvotes: 3