BinaryReader但不在StreamReader中

BinaryReader但不在StreamReader中

本文介绍了为什么需要添加File.OpenRead BinaryReader但不在StreamReader中?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

为什么需要添加File.OpenRead BinaryReader但不在StreamReader中?



BinaryReader ll = new BinaryReader(File.OpenRead(bin.txt) ))//工作正常



BinaryReader ll = new BinaryReader(bin.txt); //如果没有File.OpenRead就行不通,





StreamReader mm = new StreamReader(bin.txt); //这里工作没有File.OpenRead,

Why It Is Require To To Add File.OpenRead BinaryReader But Not In StreamReader ?

BinaryReader ll = new BinaryReader(File.OpenRead("bin.txt")) // Work's Fine

BinaryReader ll = new BinaryReader("bin.txt"); // Here It Does Not Work's Fine Without File.OpenRead ,


StreamReader mm = new StreamReader("bin.txt"); // Here It Work's Fine Without File.OpenRead ,

推荐答案


这篇关于为什么需要添加File.OpenRead BinaryReader但不在StreamReader中?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-15 10:30