Hello,
My problem is, I am trying to format a number into a certian format.
The number is 100072305608500 (this is the exact copy from what was passed in)
the format it should be in is 100/07-23-056-08W5/00
I am using
return (string.Format("{##0/00-00-000-00W0/##}}", Convert.ToInt64(wellLocation)));
where the # are optional digits.
I keep getting an error "Format Exception was unhandled Input string was not in correct format.
Any help is appreciated.
Thanks in advance.