I have to create a class Calculator with the method WriteNumber that is a string, that can calculate two numbers. I really don't know how to do it I tried to do something by creating a class just to convert the two first numbers but with no results. Any help would be good.
class Program
{
static void Main(string[] args)
{
string n = Calculator.WriteNumber(5+10);
Console.WriteLine(n);
Console.ReadLine();
}
}