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.
文字列を int にキャストしようとしていますが、何らかの理由で次のように動作するようです。
Dim theInt As Int32 = CInt("55e5") Console.WriteLine("String to Int32: " & theInt)
正しく変換されて 5500000 が出力される理由が理解できません。
それe5を科学表記法に変換すると(それが適切な用語だと思いますか?)、小数点以下を5倍押します。したがって、5500000(5つの余分な0)
e5
5500000