* TextBoxBase.cs: Use the new SuspendRecalc/ResumeRecalc methods
[mono-project.git] / mcs / errors / cs0647-12.cs
blobda3d14c846d0495f552d8767d224b1aec65447ef
1 // cs0647-12.cs: Error during emitting `System.Runtime.InteropServices.DllImportAttribute' attribute. The reason is `Empty name is not legal
2 // Line: 8
4 using System.Runtime.InteropServices;
5 using System;
7 class X {
8 [DllImport ("")]
9 extern static void Blah ();
11 static void Main (string [] args)