C# - Programming Language
This course covers the basics of programming in C#. Work your way through the videos/articles and I'll teach you everything you need to know to start your programming journey!

Building An Exponent Method

Lesson 21
Author : 🦒
Last Updated : November, 2017


Code

Copystatic int GetPow(int baseNum, int powNum)
{
     int result = 1;
     for(int i = 0; i < powNum; i++){
          result = result * baseNum;
     }
     return result;
}