How can I copy a variable which is of type IBuffer in C# (UWP app) to a string? The IBuffer itself doesn\'t seem to have any methods. It has Length which seems to be the c
For example you can use it like this:
var dataReader = Windows.Storage.Streams.DataReader.FromBuffer(Data); var output = dataReader.ReadString(Data.Length);
You can find same example here. https://msdn.microsoft.com/ru-ru/library/windows/apps/hh464978