repo.or.cz
/
mcs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
2010-04-01 Jb Evain <jbevain@novell.com>
[mcs.git]
/
errors
/
cs0579-4.cs
blob
a2233dd78d83b7f9ee6bb609e0d521e065f711d4
1
// cs0579.cs: The attribute `System.Reflection.AssemblyKeyNameAttribute' cannot be applied multiple times
2
// Line : 7
3
// Compiler options: CS0579-4-1.cs
4
5
using
System
.
Reflection
;
6
7
[
assembly
:
AssemblyKeyName
(
""
)]
8
9
public class
Blah
{
10
public static void
Main
()
{ }
11
}
12