登录 注册
当前位置:主页 > 资源下载 > 31 > C#入门经典教程中关于Dictionary的使用介绍

C#入门经典教程中关于Dictionary的使用介绍

  • 更新:2024-05-14 16:51:08
  • 大小:4.81MB
  • 推荐:★★★★★
  • 来源:网友上传分享
  • 类别:.Net - 课程资源
  • 格式:PPT

资源介绍

Dictionary的使用 students.Add(scofield.Name, scofield); … student stu2 = students["周杰杰"]; … students.Remove("周杰杰"); 添加一对Key/Value 通过Key获取元素 通过Key删除元素 //Dictionary 方式 foreach (Student student in students.Values) { Console.WriteLine(student.Name); } 遍历Values Dictionary的访问方式与哈希表相同 演示:MySchool