FileMode'存在于两种游戏中.框架和'mscorlib'

本文关键字:游戏 框架 mscorlib 存在 于两种 FileMode 两种 | 更新日期: 2023-09-27 18:07:31

我正致力于将我的XNA游戏移至MonoGame。我终于遇到了System.IO.FileMode和System.IO.FileAccess的问题。这两个都在mscorlib和monogame.framework中。我试过以下方法,但都不起作用。如果有关系的话,我使用的是VS 2015。

global::System.IO.FileMode.Open // still gives the same error
using io = gloabal::System.IO;
io.FileMode.Open // still gives teh same error.

有谁知道在一夫一妻制中解决这个问题的方法吗?

FileMode'存在于两种游戏中.框架和'mscorlib'

我也有同样的问题,我的错误来自于对MonoGame.Framework.dll的糟糕引用。我使用的是Windows8文件夹中的那个,而不是位于Windows文件夹中的那个(它不包含任何System。IO引用)。