Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
C#を使用してオンラインでこのコードを例で見ました
DataTable dt = ds.Tables["従業員"]; dt.Rows[0]["都市"] = "ウィルミントン";
DataTable dt = ds.Tables["従業員"];
dt.Rows[0]["都市"] = "ウィルミントン";
私の質問は、ゼロは何の略ですか? それは序数インデックスですか?
前もって感謝します!
0 は、データ テーブルの最初の行を参照します。(ゼロベースカウント)