Need help C# textBox1.Text does not exist in current context -


        {         if (("zippath" == "xixanpackinstaller")) ;         textbox1.text = "successfuly found xixanpackinstaller!";     }     else         textbox1.text = "move xixanpackinstaller desktop!";     } 

i have code , it's broken because @ else on visual studio says invalid token else , on textbox1.text says textbox1.text not exist in current context

{         if (("zippath" == "xixanpackinstaller")) //**;** semi-colon         textbox1.text = "successfuly found xixanpackinstaller!";     //}---please remove bracket here     else         textbox1.text = "move xixanpackinstaller desktop!";     }`enter code here` 

Comments

Popular posts from this blog

powershell Start-Process exit code -1073741502 when used with Credential from a windows service environment -

twig - Using Twigbridge in a Laravel 5.1 Package -

c# - LINQ join Entities from HashSet's, Join vs Dictionary vs HashSet performance -