Dot Net Remoting Question:
Download Job Interview Questions and Answers PDF
Write a example for remoting (code)?
Answer:
public class CommonClass : MarshalByRefObject
{
public string FirstName;
public string LastName;
public string GetWelcomeString()
{
Console.WriteLine("Welcome " + FirstName + " " + LastName);
return "Welcome " + FirstName + " " + LastName;
}
}
{
public string FirstName;
public string LastName;
public string GetWelcomeString()
{
Console.WriteLine("Welcome " + FirstName + " " + LastName);
return "Welcome " + FirstName + " " + LastName;
}
}
Download Dot Net Remoting Interview Questions And Answers
PDF
Previous Question | Next Question |
What is unmanaged code and will CLR handle this kind of code or not? | Explain is .NET Remoting? |