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.
私は VB.net で計算機を作成していますが、System.Mathライブラリが計算にラジアンを使用していることに気付き、度で計算したいと考えています。それを変更することは可能ですか?
System.Math
ただ行う:
private function RadianToDegree(angle as double) as double return angle * (180.0 / Math.PI) end function