如何resizeC#数组长度
2个回答
展开全部
// Resize the array to a bigger size (five elements larger).
Array.Resize(ref myArr, myArr.Length + 5);
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
C#中的list可以当做数组使用,而且无需定义长度,完全是动态的
class Person
{
public string Name { get; set; }
public string Address { get; set; }
}
static void Main(string[] args)
{
List<Person> people = new List<Person>();
people.Add(new Person()
{
Name = "kaka",
Address = "22,2nd cross,bangalore"
});
//no casting needed
Person p = people[0];
}
class Person
{
public string Name { get; set; }
public string Address { get; set; }
}
static void Main(string[] args)
{
List<Person> people = new List<Person>();
people.Add(new Person()
{
Name = "kaka",
Address = "22,2nd cross,bangalore"
});
//no casting needed
Person p = people[0];
}
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询