Skip to content

Instantly share code, notes, and snippets.

@toxn12
Last active August 29, 2015 14:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save toxn12/717fda61cb882f349687 to your computer and use it in GitHub Desktop.
Save toxn12/717fda61cb882f349687 to your computer and use it in GitHub Desktop.
Dim hoge As Integer
hoge = DirectCast(IIf( TextBox1.Text = "", 0, Integer.Parse(TextBox1.Text) ), Integer)
hoge = If( TextBox1.Text = "", 0, Integer.Parse(TextBox1.Text) )
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment