The StringTokenizer type exposes the following members.

Methods

  Name Description
Public method CountTokens
Method to get the number of tokens in this StringTokenizer.
Public method Equals
Determines whether the specified Object is equal to the current Object.
(Inherited from Object.)
Protected method Finalize
Allows an Object to attempt to free resources and perform other cleanup operations before the Object is reclaimed by garbage collection.
(Inherited from Object.)
Public method GetHashCode
Serves as a hash function for a particular type.
(Inherited from Object.)
Public method GetType
Gets the Type of the current instance.
(Inherited from Object.)
Public method HasMoreElements
Method to probe for more tokens.
Protected method MemberwiseClone
Creates a shallow copy of the current Object.
(Inherited from Object.)
Public method NewDelim(array<Char>[]()[][])
Method to add or change this Instance's Delimiter string. The source string will remain the same (either empty if you used Empty Constructor, or the previous value of source from the call to a parameterized constructor or NewSource(string s)).
Public method NewDelim(String)
Method to add or change this Instance's Delimiter string. The source string will remain the same (either empty if you used Empty Constructor, or the previous value of source from the call to a parameterized constructor or NewSource(string s)).
Public method NewSource
Method to add or change this Instance's Source string. The delimiter will remain the same (either default of " " (space) or whatever you constructed this StringTokenizer with or added with NewDelim(string d) or NewDelim(char[] d) ).
Public method NextElement
Method to get the next (string)token of this StringTokenizer.
Public method ToString
Returns a String that represents the current Object.
(Inherited from Object.)

See Also