.Net Framework Interview Questions and Answers
<< Previous Question Next Question >>
 Question: 2408 Page Views: 

What is a strong name in .Net?



Posted By: Avi Date: 29 August 2009 07:39:06 AM
 Answer:

A strong name includes the name of the assembly, version number, culture identity, and a public key token.It is required for a shared assembly and without this an assembly can not be deployed in Global Assembly Cache (GAC).


Posted By: eTechPlanet


Date: 29 August 2009 07:39:06 AM
Post a better Answer if you have
 
(Will show your Gravatar icon)  
  Country flag

Loading
Enter the text as shown in the image h2bbBj
Related Questions
.Net Framework : What is an interface class?

What is an interface class?

Interfaces, like classes, define a set of properties, methods, and events. But unlike classes, inter....
Category: .Net Framework Date: 8/28/2009 6:56:01 AM
.Net Framework : What is an abstract class?

What is an abstract class?

A class that cannot be instantiated. An abstract class is a class that must be inherited and have th....
Category: .Net Framework Date: 8/28/2009 6:52:20 AM
.Net Framework : Can we prevent a class from being inherited by another class in C#?

Can we prevent a class from being inherited by another class in C#?

Yes. The keyword "sealed" is used to prevent a class from being inherited.
Category: .Net Framework Date: 8/28/2009 6:48:43 AM
.Net Framework : What is the syntax to inherit from a class in C#?

What is the syntax to inherit from a class in C#?

Place a colon and then the name of the base class. For Example: class ChildClass : BaseClass { }
Category: .Net Framework Date: 8/28/2009 6:47:02 AM
.Net Framework : Does C# support multiple-inheritance?

Does C# support multiple-inheritance?

No
Category: .Net Framework Date: 8/28/2009 6:45:21 AM