Skip to content

Instantly share code, notes, and snippets.

@ssukhpinder
Created June 5, 2021 10:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ssukhpinder/c7b7c677ae473d51082d23b2fd0ad626 to your computer and use it in GitHub Desktop.
Save ssukhpinder/c7b7c677ae473d51082d23b2fd0ad626 to your computer and use it in GitHub Desktop.
public abstract class AChatroom
{
public abstract void Register(User user);
public abstract void Post(string fromUser, string toUser, string msg);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment