repo.or.cz
/
castle.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Fixing an issue with output parameters that are of type IntPtr
[castle.git]
/
MonoRail
/
NewGenerator
/
Castle.NewGenerator.Core
/
Attributes
/
ParamAttribute.cs
blob
b2218d33b552fe6274520883b90e734a51da8b84
1
namespace
Castle
.
NewGenerator
.
Core
2
{
3
using
System
;
4
5
public class
ParamAttribute
:
Attribute
6
{
7
private bool
required
;
8
9
public bool
Required
10
{
11
get
{ return required; }
12
set
{ required = value; }
13
}
14
}
15
}