I have a mac address which is formatted like 0018103AB839
and I want to display it like: 00:18:10:3A:B8:39
I am trying to do this with string.Format
but I cant really find the exact syntax.
right now I am trying something like this:
string macaddress = 0018103AB839;
string newformat = string.Format("{0:00:00:00:00:00:00}", macaddress);
Is this even possible? or should I use string.Insert
?