StringExtensions.LongLong(this string str) Method
.NET Standard 2.x
Converts a string whose value is a number into a long.
Namespace: PowerScript.Bridge
Assembly: PowerScript.Bridge.dll
Syntax
public static long? LongLong(this string str);
Parameters
str
System.String
A string whose value you want returned as a long value.
Returns
System.Int64
Returns the value of str as a long if it succeeds and 0
if str is not a valid number or if it is an incompatible datatype. If str is null
, LongLong
returns null
.
Examples
Coming soon.
Applies to
.NET Standard
2.x