1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
// CS0210: You must provide an initializer in a fixed or using statement declaration // Line: 14 using System; public class C : IDisposable { public void Dispose () { } static void Main () { using (C a = new C (), b) { } } }