一个关于Stream的问题!
Stream stream = new FileStream(sPath,FileMode.Open);
上面这种方法应该是可行吧?为什么编译器会提示( 无法将类型“System.IO.FileStream”隐式转换为“Stream”),问题出在哪?怎么能正常?sPath是一个图片的地址,我想读取一个图片!
------解决方案--------------------Stream stream = (Stream)new FileStream(sPath, FileMode.Open);
------解决方案--------------------FileStream stream = new FileStream( "C:\\1.jpg ",FileMode.Open);
------解决方案--------------------你的Stream没有指定namespace,出现这种问题,你Web Service的地址内有个名为Stream的类。
------解决方案--------------------嗯 产生二义性了