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.
0 と 1 を含む文字列があります。これを Uint32 に変換する方法が c# にあるかどうか知りたいです。メソッドなしでそれを行う方法は知っていますが、それを自動的に行う方法があるかどうか知りたいですか?
string s = "0101"; uint i = Convert.ToUInt32(s, 2); //<--5