I’m attempting to use Mono and Monodevelop (the IDE) to code a C# project in Ubuntu.
Everything is working apart from the fact that the System.Text.RegularExpressions (Package?) is not found. The only relevant thing I have found on the interwebs is here
There appears to be a solution of sorts posted, but I don’t understand. Please help 🙂
In MonoDevelop, right click on References and add a reference to the
Systemassembly.You could use
gmcs -r System *.csto compile from command line.