【发布时间】:2011-07-30 20:09:47
【问题描述】:
我正在尝试构建另一个人的 C# 项目。 在很多界面中我都会收到错误:
The modifier 'abstract' is not valid for this item
在以下界面中:
namespace Services.Email
{
using System;
using System.Collections;
using.System.Collections.Generic;
using System.Runtime.CompilerServices;
public interface IEmailService
{
abstract event EventHandler<SendCompletedEventArgs> SendSummaryCompleted;
void SendNewsItem(DocumentNewsItem newsItem, string email);
void SendSummaryAsync(Session session, Advisor advisor);
}
}
【问题讨论】:
-
考虑更换其他人。没有理由交出无法编译的代码。
标签: c# .net interface abstract