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
Make StringComparer.Create throw ArgumentNullException (#26570)
[mono-project.git]
/
mcs
/
errors
/
cs0687.cs
blob
747801734d5a75f6c94da95ab6cae4afb7eefcf6
1
// CS0687: The namespace alias qualifier `::' cannot be used to invoke a method. Consider using `.' instead
2
// Line: 9
3
4
using
foo
=
System
.
Console
;
5
6
class
X
{
7
static void
Main
()
8
{
9
foo
::
WriteLine
(
"hello"
);
10
}
11
}