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.
Windows Phone 7でテキストボックス入力を8進数としてキャプチャできますか?
文字列を int に変換して使用できます。
int number = Convert.ToInt32("010", 8);
スローされた場合FormatException、数値は変換できません。
FormatException