I'm trying to add a class to a new namespace in my project. I have the following:
Namespace Admin
Public Class Page
' Some Code
End Class
End Namespace
I'm then trying to access that on my code behind file using:
Dim page As New Admin.Page()
For some reason, it isn't recognising Admin as a namespace, is there something obvious I'm missing here? I've attempted to add a reference to my namespace, but it does not appear in the list when I right click references and add reference in the solution explorer