-
Re: CS1001 Identifier expected
You can get this error if you have something wrong in your additional namespace imports. eg System.IO. (note the . at the end of the name)2 · -
Shift-F1 (Reflector) option missing in LinqPad 5
Any reason for this and/or plans to re-emable it?1 · -
Re: Trace.WriteLine doesn't work
By default TRACE isn't defined and hence the Trace.WriteLine's are not compiled. Try #define TRACE void Main() { Trace.WriteLine("adads"); Trace.WriteLine("adads"); Trac…1 ·