This repository has been archived on 2020-04-03. You can view files and clone it, but cannot push or open issues or pull requests.
ibz/software/1_sem/first_app/first_app/Calculator.cs

20 lines
297 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace first_app
{
public class Calculator
{
public string Name;
public int Add(int x, int y)
{
return x + y;
}
}
}