byte[] tagData = GetTagBytes(tagID, out tiffDataType, out numberOfComponents);
string str = Encoding.ASCII.GetString(tagData);
With windows phone platform, the framework doesn't support Encoding.ASCII.GetString()
method.
I used to get help from Passant's post ASCIIEncoding In Windows Phone 7 befroe. But it only convert string
to byte[]
, now I need to convert byte[]
into string
.
Any Help would be nice~