Joined
Last Seen
0 Reputation Points
Unknown Quality Score
No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
0 Endorsements
Ranked #107.55K
~9K People Reached
Favorite Forums
1 Posted Topic
Re: [QUOTE=r0ckbaer;173340]Hi, what about a derived class like this one (it's very basic, but it might be what you are searching for): [code] public class MyStream : StreamReader { private uint _pos; public MyStream(string path, System.Text.Encoding enc) : base(path, enc) { } public override string ReadLine() { char current; int i; … |
The End.