How do you generate a strong name?
Answer / Saujanya Yadav
To generate a strong name for an assembly in .NET, you need to sign it with a key pair consisting of a private key (.snk file) and its corresponding public key (embedded in the assembly). You can use tools like signtool or Visual Studio's Signing tab in project properties to sign your assemblies.
| Is This Answer Correct ? | 0 Yes | 0 No |
Describe the programming model of a windows service
What is the difference between boxing and unboxing?
Conceptually, what is the difference between early-binding and late-binding?
Where?s Windows service database located?
What is .net environment?
What is the difference between a debug and release build?
How Garbage Collector (GC) Works?
Using activex control in .net?
DateTime[] dt = new DateTime[10] for(i=0; i<10; i++) { dt[i] = DateTime(2008, 1, i+1) } How many heap object will be created for the above array. Choose the correct answer below. Ans: 1, 10, 11, 12
What is .net core used for?
What is the managed and unmanaged code in .net?
in hibernate, what is dirty reading?