Skip to content

Instantly share code, notes, and snippets.

@twofingerrightclick
Created September 8, 2021 22:40
Show Gist options
  • Save twofingerrightclick/2ef58171e466db6f1d32d3b9635e7635 to your computer and use it in GitHub Desktop.
Save twofingerrightclick/2ef58171e466db6f1d32d3b9635e7635 to your computer and use it in GitHub Desktop.
Listing 12.1: The System.Collections.Stack Method Signatures
public class Stack
{
public virtual object Pop() { ... }
public virtual void Push(object obj) { ... }
// ...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment