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.
次のように、レジストリからバージョン番号を取得しています。
rKey.GetValue("Version")
System.Versionこれをオブジェクトに変換したいと思います。 どうすればいいですか?
System.Version
それが文字列だと仮定して...
string versionText = (string) rKey.GetValue("Version"); Version version = new Version(versionText);