repo.or.cz
/
mcs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
2010-06-14 Atsushi Enomoto <atsushi@ximian.com>
[mcs.git]
/
errors
/
cs0246-6.cs
blob
ac9c375adbfc4918da4c8b204666cf315421ded2
1
// cs0246-6.cs: The type or namespace name `XmlDocument' could not be found. Are you missing a using directive or an assembly reference?
2
// Line: 7
3
// This is bug 55770
4
5
using
System
;
6
using
System
.
Xml
;
7
using
Document
=
XmlDocument
;
8
9
public class
Test
{
10
public static void
Main
()
11
{
12
}
13
}