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

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

using System.Reflection;
using System.Runtime.CompilerServices;


[assembly: AssemblyKeyName("")]
[assembly: AssemblyKeyName("")]

public class Blah {

	public static void Main () { }
}