Silverlight 替代 BinaryReader.ReadDecimal
在 Silverlight 4 中,BinaryReader
似乎没有任何 ReadDecimal()
方法。
Reflector 显示它在那里,但具有内部
可见性,而不是公共
。
除了通过动态
欺骗或反射来使用该方法之外,是否有人有一个很好的解决方法来获取它。或者这都是计划的一部分?
Erica Aside:有趣的是,Reflector 还显示 Ag mscorlib
中有 10 InternalsVisibleToAttribute
(遗憾的是我没有:D),我假设一次超过 512 个字节,就有足够的优化空间!我确信鲍勃也在那里 :D
In Silverlight 4, BinaryReader
doesn't seem to have any ReadDecimal()
method.
Reflector shows that it's there but with internal
visibility, rather than public
.
Aside from using that one via dynamic
trickery or Reflection, has anyone got a good workaround for getting it. Or is this all part of the plan?
Erica Aside: amusingly, Reflector also shows that there are 10 InternalsVisibleToAttribute
s in the Ag mscorlib
(sadly none to mine :D), which I assume, at 512+ bytes a go gives plenty scope for optimization! I'm sure Bob is in there too :D
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
没有直接替换,但您可以像这样获得相同的结果:
There is no direct replacement, but you can achieve the same result like this: