I\'m writing a project and working with another party DLL.
Function from their DLL wants an IStream object to save result, but I can\'t understand how to create an I
IStream I assume is an interface. You cannot create an instance from an interface directly, rather you create an instance of an object that implements that interface (or create your own object that implements IStream).