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]
/
Experiments
/
Attic
/
MVC
/
Castle.MVC.Test
/
ServiceA.cs
blob
90757e336a5b6ae40967298a01bffa3c4c34b304
1
using
System
;
2
3
namespace
Castle
.
MVC
.
Test
4
{
5
/// <summary>
6
/// Description résumée de ServiceA.
7
/// </summary>
8
public class
ServiceA
:
IServiceA
9
{
10
#region IServiceA Members
11
12
public string
MyMethodNotcached
(
string
a
)
13
{
14
return
"Hello "
+
a
;
15
}
16
17
18
public decimal
MyMethod
(
int
a
,
decimal
c
)
19
{
20
decimal
ret
=
a
+
c
;
21
return
(
ret
);
22
}
23
24
#endregion
25
26
}
27
}