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
2007-05-25 Jonathan Chambers <joncham@gmail.com>
[mcs.git]
/
tests
/
test-325.cs
blob
92b97fe5d48dd354a9f7a82b54cbb50b11b41977
1
using
System
;
2
3
public class
RequestAttribute
:
Attribute
{
4
public
RequestAttribute
(
string
a
,
string
b
,
params string
[]
c
)
5
{
6
7
}
8
}
9
10
public class
MyClass
{
11
[
Request
(
"somereq"
,
"result"
)]
12
public static int
SomeRequest
()
13
{
14
return
0
;
15
}
16
17
public static void
Main
()
18
{
19
SomeRequest
();
20
}
21
}