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

cs0716.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2e50425556658a4ed049d865c9eb0fd163d8190c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// cs0716.cs: Cannot convert to static type 'StaticClass'
// Line: 10

static class StaticClass {
}

class MainClass {
    public static void Method (object arg)
    {
        ((StaticClass)arg).ToString ();
    }
}