Order Of Operation in C#
Prodip Datta
Software Engineer @ SELISE Digital Platforms | Passionate about Building User-Friendly Applications | C# | .NET CORE | Mongo | Angular
In math, PEMDAS is an acronym that helps students to remember the order of operations. The word PEMDAS means -
C# follows the same order as PEMDAS except Exponents since there is no exponent operator in C#. While there's no exponent operator, you can still use the System.Math.Pow method.
for more info check: Basic math operator in C#