私はlist
を返すメソッドを持っていて、そのリストをGetAndPost
メソッドからTest
メソッドに渡したいと思います。リストデータを他のメソッドに渡す方法
コード:
public List<string> GetAndPost()
{
Connection();
con.Open();
com = new SqlCommand("SELECT Statement ", con);
SqlDataReader reader = com.ExecuteReader();
List<string> list = new List<string>();
int i = 0;
while (reader.Read())
{
TXNID = reader.GetValue(0).ToString();
docType = reader.GetValue(1).ToString();
docNo = reader.GetValue(2).ToString();
ctryIssue = reader.GetValue(3).ToString();
name = reader.GetValue(4).ToString();
expDate = reader.GetValue(5).ToString();
citizen = reader.GetValue(6).ToString();
dob = reader.GetValue(7).ToString();
gender = reader.GetValue(8).ToString();
mbikeNo = reader.GetValue(9).ToString();
mbikeExpDate = reader.GetValue(10).ToString();
branch = reader.GetValue(14).ToString();
status = reader.GetValue(12).ToString();
if (status == "False")
{
}
}
reader.Close();
Console.WriteLine(list);
return list;
}
public List<string> Test()
{
}
あなたのリストは常に空です。宣言して何も追加していないだけです。それが説明のためであることを願っています... – 3615