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

cs0622.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4b8530befc4a57f06199be367a3bec4a361f3311 (plain)
1
2
3
4
5
6
7
8
9
// cs0622.cs: Can only use array initializer expressions to assign to array types. Try using a new expression instead
// Line: 7

class X {
	public static void Main ()
        {
            int i = { 3, 4, 5};
        }
}