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.
リストを文字列で初期化する最も簡単な方法は何ですか? 私が持っていると言う
String a="a" List<string> b;
文字列「a」で b を初期化するにはどうすればよいですか?
var b = new List<string> {a};
String a = "a"; List<string> b = new List<string>{a};