我想在一个命名空间中用 C# 编写继承。它们是三个类:IAccount、Account、CustomerAccount
我想把它们写在不同的类中,但它给了我这个错误信息:
找不到类型或命名空间名称“IAccount”(您是否缺少 using 指令或程序集引用?)
我在每节课的开头写了这些指令:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
我想在一个命名空间中用 C# 编写继承。它们是三个类:IAccount、Account、CustomerAccount
我想把它们写在不同的类中,但它给了我这个错误信息:
找不到类型或命名空间名称“IAccount”(您是否缺少 using 指令或程序集引用?)
我在每节课的开头写了这些指令:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;