Created
September 8, 2021 22:40
-
-
Save twofingerrightclick/2ef58171e466db6f1d32d3b9635e7635 to your computer and use it in GitHub Desktop.
Listing 12.1: The System.Collections.Stack Method Signatures
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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