given this class definition:
public class Frame
{
IFrameStream CapturedFrom;
}
I want implement Clone() method in this class, but problem is:
How to create the IFrameStream field in the destination instance? - I just don't know its implementation, how to create the instance?