I am trying to write an agent for the ACM Queue ICPC challenge... the instructions say C# agents will be run on linux via mono... which I don't have a ton of experience with. I try and use features of the most recent versions of C# and .NET (var keyword, linq, etc)... will mono support this functionality?
Asked
Active
Viewed 291 times
1 Answers
3
The Mono C# compiler is considered feature complete for C# 1.0, C# 2.0 and C# 3.0 (ECMA). A preview of C# 4.0 is distributed with Mono 2.6, and a complete C# 4.0 implementation is available with Mono 2.8 or when building Mono from our trunk source code release.
http://www.mono-project.com/CSharp_Compiler
Also, checking this thread can be helpful:

Community
- 1
- 1

Artem Koshelev
- 10,548
- 4
- 36
- 68
-
the MoMA tool in the other SO link is great! – tbischel Jan 18 '11 at 19:35