ClassPath: MEng.System.Runtime.StringInStream Parent ClassPath: MEng.System.Runtime.TextInStream Copyable: No Final: Yes MEng.System.Runtime.StringInStream is a derivative of the base text input stream. This class provides the base class' input stream functionality over a string buffer. So it will pull in text from a string. This class inherits all of it's functionality from the parent class. This class just provides the ability to have that base functionality work in terms of a string.
Constructors:
Constructor([In] MEng.String Contents); Constructor([In] MEng.System.Runtime.StringOutStream SyncWith);There is a constructor that takes a string of text. This is copied into the input stream's buffer, and then you can parse lines out of that. The original string is unchanged and may be reused after it is copied.
The second constructor allows you to synchronize this input stream with an existing output text stream. This makes them use the same string buffer, so that data written to the output stream, can be read in from the input stream. If you reset the output stream, the input stream will appear to be empty.