Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- Imports System.Globalization
- Public Module NumericLibrary
- Public Function ParseInteger(value As String) As (Success As Boolean, Number As Int32)
- Dim number As Integer
- Return (Int32.TryParse(value, NumberStyles.Any, CultureInfo.InvariantCulture, number), number)
- End Function
- End Module
Add Comment
Please, Sign In to add comment