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

cs0611.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4451d34385bab014dc89b41c6c265011229eece9 (plain)
1
2
3
4
5
6
7
8
9
10
// cs0611.cs: Array elements cannot be of type 'System.ArgIterator'
// Line: 5

public class Sample {
        System.ArgIterator[] arg;
		static void Main () {}
}