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: 70353bf2847d876c8e84175ccc70c836e6d8a1b0 (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 () { }
}