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

cs0579-4.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 55b9a9ec925f43ea3bde81241676ac039477ce11 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// cs0579.cs : Duplicate 'AssemblyKeyName' attribute
// Line : 7
// Compiler options: CS0579-4-1.cs

using System.Reflection;

[assembly: AssemblyKeyName("")]

public class Blah {
	public static void Main () { }
}