source: trunk/Include/Classes/System/IO/TextReader.ab@ 420

Last change on this file since 420 was 420, checked in by NoWest, 16 years ago

StreamReaderの抽象クラスのTextReaderを実装

File size: 845 bytes
RevLine 
[420]1NameSpace System
2NameSpace IO
3
4Class TextReader
5 Implements System.IDisposable
6
7Public
8 Virtual Sub TextReader() :End Sub
9 Virtual Sub ~TextReader() :End Sub
10
11/* Null*/
12
13Public
14 Virtual Sub Close()
15 This.Dispose()
16 End Sub
17/* CreateObjRef*/
18/* Dispose*/
19/* Equals*/
20/* GetHashCode*/
21/* GetLifetimeService*/
22/* GetType*/
23/* InitializeLifetimeService*/
24 Abstract Function Peek() As Long
25 Abstract Function Read() As Long
26 Abstract Function Read(buffer As LPTSTR, index As Long, count As Long) As Long
27 Abstract Function ReadBlock(buffer As LPTSTR, index As Long, count As Long) As Long
28 Abstract Function ReadLine() As String
29 Abstract Function ReadToEnd() As String
30/* ReferenceEquals*/
31/* Synchronized*/
32/* ToString*/
33/* Dispose*/
34/* Finalize*/
35/* MemberwiseClone*/
36End Class
37
38End NameSpace
39End NameSpace
Note: See TracBrowser for help on using the repository browser.