我一直收到这个错误,我不确定我做错了什么。错误1'Home.Services.InventoryImpl'未实现接口成员'Home.Services.InventorySvc.CreateInventory(Home.Services.InventoryImpl)'
我的界面代码
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Home;
using Home.Domain;
namespace Home.Services
{
public interface InventorySvc
{
void CreateInventory(InventoryImpl CreateTheInventory);
}
}
我的实施准则
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Home.Domain;
using System.IO;
using System.Runtime.Serialization;
using System.Runtime.Serialization.Formatters.Binary;
namespace Home.Services
{
public class InventoryImpl: InventorySvc
{
public void CreateTheInventory(CreateInventory createinventory)
{
FileStream fileStream = new FileStream
("CreateInventory.bin", FileMode.Create,
FileAccess.Write);
IFormatter formatter = new BinaryFormatter();
formatter.Serialize(fileStream, createinventory);
fileStream.Close();
}
}
}
答案 0 :(得分:9)
您的方法称为CreateTheInventory
,但在界面中称为CreateInventory
。方法签名必须与接口成员完全匹配,以便编译器将该方法视为实现接口成员,并且名称不匹配。
此外,参数类型不匹配 - 在您的实现中,您使用CreateInventory
作为参数类型,但接口采用类型为InventoryImpl
的参数。
如果你纠正了这两个错误,你的代码应该构建。
答案 1 :(得分:2)
您的InventorySvc
界面定义:
void CreateInventory(InventoryImpl CreateTheInventory);
但你已经实施了:
public void CreateTheInventory(CreateInventory createinventory)
看到区别?
答案 2 :(得分:0)
类中的方法签名与接口方法的签名不匹配。
使用鼠标悬停在接口名称上时出现的智能标记,以创建接口实现。这使一切都适合你。
此外,您应该调用界面IInventorySvc
。接口名称的准则声明大写的“I”应放在逻辑名称之前,即使后者以“I”开头。