Changed name of form and project stopped working. Help
I have a big project and I changed the name of 1st form from "Form1" to "WebB开发者_C百科rowser", now I It gives me following error.
The type or namespace 'Form1' could not be found (are you missing a using directive or an assembly reference?)
I cannot even change the name back to Form1. it says cannot find WebBrowser.cs on disk, it is renamed or deleted from the disk. What I should do, I have a submission tomorrow.
Thanks
Change every reference for Form1
to WebBrowser
.
You can double click on the error in your Error List and change it.
精彩评论