Foxhole Atheist
Wednesday, March 13, 2013
must declare a body because it is not marked abstract, extern, or partial
This error is not always giving the correct message
consider:
class
Animal
{
Animal();
}
this will raise the above error
but this :
partial
class
Animal
{
partial Animal();
}
partial
class
Animal
{
Animal() { }
}
wont help
why?
partial procedures need to return void
No comments:
Post a Comment
Newer Post
Older Post
Home
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment