You are trying to designate a class instead of a namespace for the
using statement.
For example:
using System.Console; |
This is not correct because the using statement only works with namespaces, while Console is a class.
You are trying to designate a class instead of a namespace for the
using statement.
For example:
using System.Console; |
This is not correct because the using statement only works with namespaces, while Console is a class.