接口的实现
接口的定义在asp.net中哪儿定义啊?
有没有固定的位置啊?
能举个example 就好了
在线等,谢谢了
------解决方案--------------------在单独的文件中做 接口的定义
interface ITest
{
string MethodTest(string p_String);
void HelloWord();
}
------解决方案--------------------public interface IChannel
{
int GetMaxId();
}
------解决方案--------------------没有固定的位置
------解决方案--------------------/// <summary>
/// 定义接口
/// </summary>
public interface InterTest
{
int sum(int a,int b);
}
/// <summary>
/// 调用InterTest接口
/// </summary>
class test:InterTest
{
#region InterTest 成员
public int sum(int a, int b)
{
// TODO: 添加 test.sum 实现
return (a+b);
}
#endregion
}
------解决方案--------------------把class改成interface