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
/
IServcieA.cs
blob
a2b509c3a8749a041835a2e373e17dff0edb0587
1
using
System
;
2
3
namespace
Castle
.
MVC
.
Test
4
{
5
/// <summary>
6
/// Description résumée de IServcieA.
7
/// </summary>
8
public interface
IServiceA
9
{
10
decimal
MyMethod
(
int
a
,
decimal
c
);
11
12
string
MyMethodNotcached
(
string
a
);
13
}
14
}