I am trying to write a C# program and it has a statement:
Floater frmFloat = new Floater();
It was erroring out because it said it wasn't in the namespace so I did some searching and found that is in the System.Windows. Documents namespace. Now when I try to add using System.Windows. Documents at the top of the program it errors out saying the name space doesn't exist.
Might anyone know what is going on? I don't know if it is a .net error, IDE error, or what. Oh yeah, I am using .net 3.5
Thanks,
Rob
Floater frmFloat = new Floater();
It was erroring out because it said it wasn't in the namespace so I did some searching and found that is in the System.Windows. Documents namespace. Now when I try to add using System.Windows. Documents at the top of the program it errors out saying the name space doesn't exist.
Might anyone know what is going on? I don't know if it is a .net error, IDE error, or what. Oh yeah, I am using .net 3.5
Thanks,
Rob
Comment