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

cs0650.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2ec5ae2370c0bc2927c69f44826ca12ce88568a5 (plain)
1
2
3
4
5
6
7
8
9
// cs0650.cs: Syntax error, bad array declarator. To declare a managed array the rank specifier precedes the variable`s identifier. To declare a fixed size buffer field, use the fixed keyword before the field type
// Line: 7

class X {
        public static void Main ()
        {
            int myarray[2];
        }
}