Hi to all,
I recently started a new WPF Application Project and I added the following C# class to my project:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Diagnostics;
namespace Wave
{
class WaveViewModel
{
Debug.WriteLine("Hello");
}
}
However, I get the error message Debug.WriteLine does not exist in the current context.. Why?
As I type it sees the Debug and completes the word for me, but it doesn't show any of the methods that are available, such as WriteLine?
Thanks in advance
MarcinMR