I need help with this: Method overload C#
Complete the Add () method so that it calculates the sum of two numbers given as arguments. Overload it to be able to do the same operation with double type values. The method calls are already written. This is the code: using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace SoloLearn { class Program { static void Main(string[] args) { Console.WriteLine(Add(10, 12)); Console.WriteLine(Add(1.5, 2.9)); } //completa el método para sumar static int Add( a + b) { } //sobrecárgarlo para el tipo doble static double Add( a + b) { } } }