blob: 39f4d9cfabfa9274062cc8140f311847e62144eb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
// CS0019: Operator `-' cannot be applied to operands of type `string' and `ulong'
// Line : 12
using System;
public class C
{
public static void Main ()
{
ulong aa = 10;
ulong bb = 3;
Console.WriteLine("bug here --> "+aa-bb);
}
}
|