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: 1d5cff83d2b28e741f9c593532717188c58b419b (plain)
1
2
3
4
5
6
7
8
9
// CS0650: 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];
        }
}