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.
ユーザーIDを表示するために、このような変数を定義しました
userid = row.userid;
しかし、このエラーが発生します
Cannot implicitly convert type 'int' to 'string'
助けてください
userid = row.userid.ToString()?
userid = row.userid.ToString()
これを試して:
userid = row.userid.ToString();