Skip to content

Instantly share code, notes, and snippets.

@breezhang
Created March 21, 2012 11:42
Show Gist options
  • Save breezhang/2146370 to your computer and use it in GitHub Desktop.
Save breezhang/2146370 to your computer and use it in GitHub Desktop.
MarshalByRefObject remoting
public class MyRemoteClass : MarshalByRefObject, IMyInterface
{
public int FunctionOne(string str)
{
return str.Length;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment