无法使用FileFormatException(?)

时间:2013-03-20 20:34:46

标签: c# exception xna

我正在为我的小型XNA项目编写一个自定义导入程序,并尝试做一些简单的事情,就像在我的导入程序Import方法中抛出FileFormatException一样。

我引用了WindowsBase.dll,因此FileFormatException应该在IntelliSense的System.IO下可用,对吧?我输入System.IOFileFormatException下的System.IO没有自动填充功能。

这是throw语句所在的位置:

namespace TetrominoImporter
{
    public class TetrominoReader : ContentImporter<Tetromino>
    {
        public const string blockFileName = "blocks.txt";

        public override Tetromino Import(string filename, ContentImporterContext context)
        {
            // HERE

1 个答案:

答案 0 :(得分:18)

您需要在引用中包含WindowsBase,因为FileFormatException是在该程序集中定义的。添加完之后,您应该能够解析System.IO.FileFormatException