懂.Framework2.0的高手,帮帮我这个超级菜鸟
[bo][/bo]要求:? 场景
你是一家小型咨询公司的开发人员,该公司希望你开发一个应用程序,用以管理本地汽车代理商的库存。已经给你分配了开发该应用程序的任务,其功能是添加有关代理商提供的各类汽车的信息。该应用程序应根据车辆标识号对车辆信息进行排序,并以报告的形式在控制台中显示每种车辆的信息。
? 实验文件:
实验所需代码已经部分完成。
根据所使用的编程语言,项目文件位于E:\Labfiles\Starter\VB\crse3355ae_lab01或E:\Labfiles\Starter\CS\crse3355ae_lab01文件夹中(这个路径指的是虚拟机上的E盘,如不使用虚拟机,请自解压实验文件,解压后的文件位于C:\Labfiles目录中)。
? 操作指南:
在本实验中,你使用 Visual Studio 来开发一个应用程序,用以管理本地汽车代理商的库存,还要定义泛型 Vehicle 类来添加有关车辆的信息。当加载应用程序时,你在 Dealership 类中创建一个索引器,并为该类实现 Singleton 设计模式,从而在应用程序的生存期时对该类进行实例化。你还应编写代码实现以下功能:显示菜单、创建 GetValidStringInput、GetNewVehicle 和 AddNewVehicle 方法、生成库存报告。
步骤1:创建表示车辆的泛型类
创建一个泛型 Vehicle 类,并将使用字符串数据类型作为泛型参数。
步骤2:创建一个包括泛型集合和迭代器的泛型类以表示代理商
创建一个表示汽车代理商的 Dealership 类,该类将存储键/值对,其中键为 VIN 编号,而值为车俩,且该类能够按 VIN 编号排序。
步骤3:向 Dealership 库存集合添加 Vehicle 类
创建一个显示菜单,并填充 Vehicle 类的一个实例,然后将此实例添加到 Dealership 类中的 Inventory 集合中。
步骤4:通过使用迭代器生成一个库存报告
对 Inventory 集合进行循环访问,并以报告的形式在控制台中显示车辆的信息。
我编的代码如下:using System;
using System.Collections;
using System.Collections.Generic;
using System.Text;
using System.Data;
namespace crse3355ae_lab01{
class Vehicle<T>
{
public void f0()
{
List<string> names = new List<string>();
string s;
s=(Console.ReadLine()).ToString();
names.Add(s);
}
}
public class Dealership :IEnumerable
{
public void f1(){
SortedList<T> Inventory = new SortedList<T>();
Inventory.Add("", "s");
}
}
public class start
{
public static void Main()
{
int choice = 0;
while (choice != 3)
{
Console.WriteLine("\nPlease enter an option from the menu below");
Console.WriteLine("\n 1. add a type car ");
Console.WriteLine("\n 2. show car");
Console.WriteLine("\n 3. Exit Application");
Console.Write("\n Option? [1/2/3] : ");
choice = Convert.ToInt32(Console.ReadLine().Trim());
switch (choice)
{
case 1:
Vehicle<string> a = new Vehicle<string>();
break;
case 2:
break;
case 3:
break;
}
}
}
}
}
错误:错误 1 找不到类型或命名空间名称“T”(是否缺少 using 指令或程序集引用?) C:\Documents and Settings\dc\桌面\右下角\program\finish\crse3355ae_lab01\crse3355ae_lab01\Program.cs 29 20 crse3355ae_lab01
错误 2 非泛型 类型“System.Collections.SortedList”不能与类型参数一起使用 C:\Documents and Settings\dc\桌面\右下角\program\finish\crse3355ae_lab01\crse3355ae_lab01\Program.cs 29 9 crse3355ae_lab01
错误 3 找不到类型或命名空间名称“T”(是否缺少 using 指令或程序集引用?) C:\Documents and Settings\dc\桌面\右下角\program\finish\crse3355ae_lab01\crse3355ae_lab01\Program.cs 29 51 crse3355ae_lab01
错误 4 非泛型 类型“System.Collections.SortedList”不能与类型参数一起使用 C:\Documents and Settings\dc\桌面\右下角\program\finish\crse3355ae_lab01\crse3355ae_lab01\Program.cs 29 40 crse3355ae_lab01
错误 5 “crse3355ae_lab01.Dealership.GetEnumerator()”是“方法”,但此处被当做“类型”来使用 C:\Documents and Settings\dc\桌面\右下角\program\finish\crse3355ae_lab01\crse3355ae_lab01\Program.cs 43 25 crse3355ae_lab01
错误 6 当前上下文中不存在名称“items” C:\Documents and Settings\dc\桌面\右下角\program\finish\crse3355ae_lab01\crse3355ae_lab01\Program.cs 43 39 crse3355ae_lab01
[bo]麻烦前辈指点,我对泛型不太懂!!![/bo]