-
Notifications
You must be signed in to change notification settings - Fork 0
/
Demo.cs
41 lines (39 loc) · 908 Bytes
/
Demo.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Relationships
{
class Demo
{
int no;
int no1;
public Demo()
{
}
public Demo (int v, int r)
{
this.no = v;
this.no1 = r;
}
public static Demo operator +(Demo x, Demo y)
{
Demo t = new Demo();
t.no = x.no + y.no;
t.no1 = x.no1 + y.no1;
return t;
}
public static Demo operator -(Demo x, Demo y)
{
Demo t = new Demo();
t.no = x.no - y.no;
t.no1 = x.no1 - y.no1;
return t;
}
public void show()
{
Console.WriteLine("The numbers are {0} and {1}", no, no1);
}
}
}