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 the difference beween the registerwellknownservicetype() and registerwellknownclienttype()?
Explain threading types?
Explain the differences between marshal by value and marshal by reference?
Is it a good design practice to distribute the implementation to remoting client?
Define proxy in .net remoting?
Explain how to perform remoting?
What are the ways to configure remoting objects before client can use them?
Will clr handle unmanaged code or not?
Explain Singleton design pattern of Remoting?
Difference between .net remoting versus distributed com?
Explain the difference between the registerwellknownservicetype(), registerwellknownclienttype(), registeractivatedservicetype() and registeractivatedclienttype() in .net?
Explain how to directly call a native function exported from a dll?
Hello, I want to connect a system in LAN and i want to access that.When ever i am moving a mouse in my desktop the similar thing have to happend in the another system in which i have connected. I need coding for this in c# and .NET . any one please help me.It is very urgent to me Advance thanks. my email id:manojkumarchallagundla@gmail.com
What are the channels in .net remoting?
What are the security measures exist for .net remoting in system.runtime.remoting?