a575963da9
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
27 lines
351 B
C#
27 lines
351 B
C#
using System;
|
|
|
|
class AAttribute : Attribute
|
|
{
|
|
public string Value;
|
|
|
|
public AAttribute (string s)
|
|
{
|
|
Value = s;
|
|
}
|
|
}
|
|
|
|
[A (value)]
|
|
class MainClass
|
|
{
|
|
const string value = null;
|
|
|
|
public static int Main ()
|
|
{
|
|
var attr = typeof (MainClass).GetCustomAttributes (false) [0] as AAttribute;
|
|
if (attr.Value != null)
|
|
return 1;
|
|
|
|
return 0;
|
|
}
|
|
}
|