Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Normal
Youre welcome. One other thing I forgot to mention is that if you want toonly execute code if a boolean is false, then you woulddo this:[code=csharp]if (!someBool){ //someBool is false}[/code]
Youre welcome.
One other thing I forgot to mention is that if you want to
only execute code if a boolean is false, then you would
do this:[code=csharp]if (!someBool)
{
//someBool is false
}[/code]