Malachi
Malachi

Reputation: 2453

MonoDevelop: Semi cryptic error CS0016

Here's the error I'm getting:

Error CS0016: Could not write to file Fact.Apprentice.Core', cause: Type '<>__AnonType02' was not completed. (CS0016) (Fact.Apprentice.Core - Mono)

If I compile using MonoDevelop + Microsoft .NET, no such error shows up. When using Mono framework, I am unable to compile because of this. Behavior identical for Mac or PC installation.

Upvotes: 0

Views: 467

Answers (1)

Marek Safar
Marek Safar

Reputation: 600

This kind of error usually indicates compiler bug. The most likely source will be some of your LINQ queries. You could also try Mono 2.11 which should give you better error message.

Upvotes: 1

Related Questions