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

cs0210.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0a4b0b1aaf6ca7744f7f1cd78b5cdf820f095d9b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// cs0210.cs: You must provide an initializer in a fixed or using statement declaration
// Line: 8

using System.Resources;

public class MainClass {
        static void Main () {
                using (ResourceReader reader) {
                }
        }
}