I have a component with 3 parameter and deployed to client
side now i changed my dll method which takes 4 parameter.How
can i deploy this without affecting the clent?s code ?
Answer Posted / pankaj verma
If a component's parameters are varying then it can be deployed without affecting the client in two ways:
1. In C# 4.0 and above, We can use optional parameters that work like this:
public void foo(int i, int j, int k, int a = 0) --a is newly added parameter
{
//Function logic here
}
2. Overload the method.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
To display data in the combo box, prior to setting the Data Source, what kind of property on a Combo Box do you set with a column name?
Explain managed code an un-managed code.
Can we use MSSql as backend in asp.net...if yes then How.?
To load your generated dataset with data which method do you invoke?
What is the difference between mechine.config and web.config?
Mention the execution process for managed code?
What language does asp.net use?
What are custom controls?
What tags do you need to add within the asp:datagrid tags to bind columns manually? Give an example.
Explain the concept of MVC Scaffolding?
How you will handle session when deploying application in more than a server?
What are the properties of the eventargs argument when capturing keyboard events?
Can a .net web application consume java web service?
Explain server control extensibility with reference to asp.net 2.0 ?
What is the difference between the asp and asp.net?