Skip to content

Instantly share code, notes, and snippets.

@alimozdemir
Created September 4, 2018 13:02
Show Gist options
  • Save alimozdemir/c016cbcfdb100b8ff19fb7811e3a1d18 to your computer and use it in GitHub Desktop.
Save alimozdemir/c016cbcfdb100b8ff19fb7811e3a1d18 to your computer and use it in GitHub Desktop.
Client and RequestClient implementation for object pool
public abstract class Client
{
public abstract void Connect();
}
internal class RequestClient : Client
{
public override void Connect()
{
Console.WriteLine("Connecting to something with RequestClient...");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment