Answer Posted / guest
Assembly versioning allows the application to specify not
only the library it needs to run (which was available under
Win32), but also the version of the assembly
Is This Answer Correct ? | 1 Yes | 1 No |
Post New Answer View All Answers
What are the boolean data types in c#?
Is c# difficult to learn?
what will be the output of the given below coding. using System; public class Exercise { static void OddNumbers(int a) { if (a >= 1) { Console.Write("{0}, ", a); a -= 2; OddNumbers(a); } } public static int Main() { const int Number = 9; Console.WriteLine("Odd Numbers"); OddNumbers(Number); Console.WriteLine(); return 0; } }
Why do we use constructors in c#?
What is difference between c and c sharp?
Can an abstract class inherit from another abstract class c#?
How to handle exceptions that are raised in a component?
How will you deploy the dll file in gac?
What is jit? What are the different types of jit?
What is the difference between interface and inheritance in c#?
What is the difference between ienumerable and enumerable?
Why is ienumerable used?
How to force my .net app to run as administrator on windows 7?
update data in an xml file which resides in solution itself, using silverlight 4.0
What is COM Interoperability?