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
2009-02-27 Jb Evain <jbevain@novell.com>
[mcs.git]
/
errors
/
cs0759.cs
blob
b2c6ebbd19a3f628a89b3f29b0f2eebc73888642
1
// CS0759: A partial method `C.Foo()' implementation is missing a partial method declaration
2
// Line: 7
3
4
5
public partial class
C
6
{
7
partial void
Foo
()
8
{
9
}
10
11
public static void
Main
()
12
{
13
}
14
}