What are the ways to deploy an assembly?
Answers were Sorted based on User's Feedback
Answer / daniel
An MSI installer, a CAB archive, and XCOPY command.
Is This Answer Correct ? | 21 Yes | 1 No |
Answer / ranjanatyagi
An assembly can be deploy using to ways .One of the easiet
way is XCOPy command.
Is This Answer Correct ? | 10 Yes | 0 No |
What are examples of desktop applications?
How to update the gui from another thread in c#?
Why do we use yield in c#?
What is unrecognized escape sequence in c#?
If there are 2 interface IParentInterface & IChildInterface as follows. interface IParentInterface { void InterfaceMethod(); } interface IChildInterface : IParentInterface { void InterfaceMethod(); } Both the interface contains method with same name InterfaceMethod(). How InterfaceMethod() will be handled in IChildInterface as its deriving IParentInterface
What are the fundamental differences between value types and reference types?
Explain the different ways a method can be overloaded?
Are private class-level variables inherited?
Explain the difference between passing parameters by value and passing parameters by reference with an example?
Where does the dispose method lie and how can it be used to clean up resources?
how to handle errors in sqlserver
What are anonymous methods ? why these methods are used and in what condition these methods are useful ?