“修饰符public对此项无效”…这是我的IService.cs文件中的代码
[ServiceContract]public interface IClassRollService{ [OperationContract] List<Student> GetStudentList(int semester); [OperationContract] double GetClassAverage(int anything);}
在我的Service.cs文件中
public double GetClassAverage(){ double sum = 0.0; double total; foreach (Student S in Students) { sum += S.Average; } return total = sum / Students.Count();}
在我的windows窗体上,我通过调用clIEnt.GetStudentList()来填充grIDvIEw,但它不适用于GetClassAverage()
我做错了什么或我错过了什么?
[编辑]已经公开但我仍然无法从windows窗体调用该方法.有没有其他方法我可以从该方法获取返回值到windows窗体.这与Web服务有关,我知道很多.
解决方法 在接口中,根据定义,所有方法都是公共的.这就是为什么它告诉你“公共”无效.只需从界面的方法定义中删除“public”关键字,一切都会好的. 总结以上是内存溢出为你收集整理的c# – “接口方法”中的“修饰符public对此项无效”全部内容,希望文章能够帮你解决c# – “接口方法”中的“修饰符public对此项无效”所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)