是否有任何選項做這樣的事情:列表添加一個裁判字符串對象
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
class Student
{
public string PassPort { get; set; }
public string FirstName { get; set; }
public string LastName { get; set; }
public string Message { get; set; }
public List<string> AllProperties { get; set; }
public Student()
{
AllProperties = new List<string>();
AllProperties.Add(ref PassPort);
AllProperties.Add(ref FirstName);
AllProperties.Add(ref LastName);
AllProperties.Add(ref Message);
}
}
所以當我改變AllProperties[0]
它會改變PassPort
字符串變量?
你想AllProperties [ 0]調用屬性「PassProt」?如果是的話,你應該反思 – ZivS 2014-12-06 09:20:23
我使用DataTable來顯示信息,我想這樣做索引我得到 – 2014-12-06 09:39:20
我在做execl數據表和我需要字符串作爲屬性 但消息屬性是可選的,所以我想確保只有相關的屬性是fullfill和不輸入null屬性 – 2014-12-06 09:41:54