repo.or.cz
/
mono-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[corlib] Simplify RuntimeInformation by getting OS name from the runtime (#13164)
[mono-project.git]
/
mcs
/
errors
/
cs1928.cs
blob
279227515905bfc5b71827b2ebd55afbbdfc3c62
1
// CS1928: Type `string' does not contain a member `Check' and the best extension method overload `C.Check(this string, int)' has some invalid arguments
2
// Line: 12
3
4
static class
C
5
{
6
public static void
Check
(
this string
s
,
int
i
)
7
{
8
}
9
10
static void
Main
()
11
{
12
"alo"
.
Check
(
"o"
);
13
}
14
}