Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cs0019-8.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 85f659f1bff21abcbc9bc601b1b64796ebe35ee5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// cs0019.cs : 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);
    }
}