浏览代码

Skip example for now.

Brucey 2 年之前
父节点
当前提交
a44c0a3f88
共有 1 个文件被更改,包括 0 次插入9 次删除
  1. 0 9
      utf8stream.mod/utf8stream.bmx

+ 0 - 9
utf8stream.mod/utf8stream.bmx

@@ -73,15 +73,6 @@ End Enum
 
 Rem
 bbdoc: This class wraps a stream and converts its contents to UTF8.
-```blitzmax
-	' Create a stream that reads from a file and converts its contents to UTF8.
-	Local stream:TStream = New TEncodingToUTF8Stream(ReadStream("test.txt"), EStreamEncoding.LATIN1)
-	' Read the first 10 bytes from the stream.
-	Local StaticArray buf:Byte[10]
-	stream.ReadBytes(buf, 10)
-	' Print the bytes to the console.
-	Print buf
-```
 End Rem
 Type TEncodingToUTF8Stream Extends TStreamWrapper
 	Field encodingStrategy:IEncodingStrategy