Guest User

Untitled

a guest
Jun 22nd, 2018
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. Private Function TryStrToGuid(ByVal g As String) As Boolean
  2. Try
  3. Dim test As New Guid(g)
  4. Return True
  5. Catch ex As Exception
  6. Return False
  7. End Try
  8. End Function
Add Comment
Please, Sign In to add comment