While fiddling with Naudio, I found this code. I am compiling it as:
csc.exe /reference:Naudio.dll play.cs
and getting the error:
play.cs(3,14): error CS0234: The type or namespace name 'Linq' does not exist in the namespace 'System' (are you missing an assembly reference?)
The version of csc is: C:\Windows\Microsoft.NET\Framework\v2.0.50727\csc.EXE
While searching for it, I found a thread which says I need to add System.core
reference, but doing something like: /reference:System.core.dll
or /reference:System.core
is not solving the problem.