首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > asp.net >

反编译出现的异常

2012-05-01 
反编译出现的错误C# codeusing Systemusing System.Datausing Z.Entityusing System.Data.SqlClientus

反编译出现的错误

C# code
using System;using System.Data;using Z.Entity;using System.Data.SqlClient;using System.Collections;using System.Collections.Generic;namespace Z.DALFactory{    using System;    using System.Data;    using Z.Entity;    using System.Data.SqlClient;    using System.Collections;    using System.Collections.Generic;    public interface IAward    {        void AddAward(AwardInfo model);        void DeleteAward(int AwardId);        int ExistsAward(int AwardId);        [color=#FF0000]DataTable getAllAwards();[/color]        int GetAwardMaxId();        void UpdateAward(AwardInfo model);    }}


红色的那行有错误


错误为


错误8类型“System.ComponentModel.ISupportInitialize”在未被引用的程序集中定义。必须添加对程序集“System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089”的引用。D:\Disassembler\Z.DALFactory\Z\DALFactory\IAward.cs2119Z.DALFactory



搞不懂

[解决办法]
using System.ComponentModel

热点排行