Answer Posted / arunkumar thimma
public class CommonClass : MarshalByRefObject
{
public string FirstName;
public string LastName;
public string GetWelcomeString()
{
Console.WriteLine("Welcome " + FirstName + " " + LastName);
return "Welcome " + FirstName + " " + LastName;
}
}
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
What is asynchronous programming?
What is the difference beween the registerwellknownservicetype() and registerwellknownclienttype()?
Elaborate the term WebService and how it differ from Remoting?
What is unmanaged code?
What are static assemblies?
Explain the types of .net remoting?
Explain how does assembly versioning in .net prevent dll hell?
What are the remotable objects in .net remoting?
Define singleton activation mode in .net remoting?
How do you directly call a native function exported from a DLL?
Define proxy in .net remoting?
Define a process?
What are dynamic assemblies?
When should we choose .net remoting over .net web services?
Can you explain remoting?