Calculate Area of Different Shapes in C# Using Method.
CODE: using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace CP_Methods_paractise { class Program { public static void circle(double rad) { double area = Math.PI * Math.Pow(rad, 2); Console.WriteLine("The Area Of Circle Is:{0}",area); } public static void Square(double Len) { double area = Math.Pow(Len, 2); Console.WriteLine("The Area Of Square Is:{0}", area); } public static void Rectangle(double reclen,double wid) { double area = reclen * wid; ...