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

cs0626-4.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 007a588b12a6f528facbf0494f539865f05cc6f0 (plain)
1
2
3
4
5
6
7
8
// cs0626.cs: Method, operator, or accessor 'ExternClass.ExternMethod()' is marked external and has no attributes on it. Consider adding a DllImport attribute to specify the external implementation
// Line: 6
// Compiler options: -warnaserror -warn:1

class ExternClass {
        [System.Obsolete]
        public static extern void ExternMethod();
}