07 2024 档案
摘要:(五) 列表与字典 1.ArrayList:动态数组列表集合,类似于Java的List (1)初始化:ArrayList是一个类/对象,需要使用new关键字初始化,且不需要指定大小(动态扩展) ArrayList array = new ArrayList(); (2)特点: - 长度动态扩展,无需
阅读全文
摘要:(一) C# 程序结构 using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace netBasic_lea
阅读全文