I'm currently tasked with building a programm that can convert different numeric strings into other number systems I've been mostly using methods similar to this
string ConvToDec(string input)
{
return String.Join(".", (input.Split('.').Select(x => Convert.ToString(Convert.ToInt32(x, 2)))).ToArray());
}
To convert, which I can't seem to get working when I want to convert from Hex to Dec. I've tried a few solutions I've found on here like the ones found in this thread, but nothing seemed to work for me.