M mike Sep 23, 2005 #1 What does {";"c} mean in the following statement? For Each role In ticket.UserData.Split(New Char() {";"c})
What does {";"c} mean in the following statement? For Each role In ticket.UserData.Split(New Char() {";"c})
H Herfried K. Wagner [MVP] Sep 23, 2005 #2 mike said: What does {";"c} mean in the following statement? For Each role In ticket.UserData.Split(New Char() {";"c}) Click to expand... It initializes a character array with one 'Char' element. The suffix 'c' marks the literal as a character literal.
mike said: What does {";"c} mean in the following statement? For Each role In ticket.UserData.Split(New Char() {";"c}) Click to expand... It initializes a character array with one 'Char' element. The suffix 'c' marks the literal as a character literal.