13 lines
256 B
C#
Raw Normal View History

// CS0210: 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) {
}
}
}