我该怎么办?
显示
的错误字符文字中的字符太多
using(var fileStream = appStorage.OpenFile!('note.txt', System.IO.FileMode.OpenOrCreate))
答案 0 :(得分:10)
你的问题在这里:
'note.txt'
您需要将其更改为:
"note.txt"
单引号用于定义char
,因此'c'
,'a'
或'm'
都是单引号的有效用法。如果您有多个字符,则表示您需要使用双引号。
摆脱!
OpenFile!