I was converting text to ASCII number in Powershell and having trouble with ToByte()
. When I looked at the methods for string, I see that some of them show up with an interface prefix, whilst most don't.
Can anyone tell me the difference between these defintions?
Why ToByte()
starts with IConvertible
, but PadLeft()
doesn't?
Any why ToString()
has both of these notations?