Click or drag to resize

imbStringFormatsArbitraryToDecimalSystem Method

imbSCI | imbACE | imbNLP | imbWEM | imbWBI
Converts the given number from the numeral system with the specified radix (in the range [2, 36]) to decimal numeral system.

Namespace:  imbSCI.Core.extensions.text
Assembly:  imbSCI.Core (in imbSCI.Core.dll) Version: 0.3.58.
Syntax
C#
public static long ArbitraryToDecimalSystem(
	string number,
	int radix
)
Request Example View Source

Parameters

number
Type: SystemString
The arbitrary numeral system number to convert.
radix
Type: SystemInt32
The radix of the numeral system the given number is in (in the range [2, 36]).

Return Value

Type: Int64
Remarks
http://www.pvladov.com/2012/07/arbitrary-to-decimal-numeral-system.html
See Also