Reputation: 11599
I see IRandomAccessStream
being used in a windows app. What benefit this stream provides compared to other streams like FileStream
, MemoryStream
?
Upvotes: 2
Views: 798
Reputation: 11228
They are used in different frameworks - IRandomAccessStream
is an interface used in Windows Runtime, FileStream
and MemoryStream
are classes used in .NET.
You can convert between them with extension methods: http://msdn.microsoft.com/en-us/library/dn531021(v=vs.110).aspx
Upvotes: 2