Hi, I have the following code myClass[] items = getItems(); Type ty = typeof(myClass[]); IDataObject dobj = Clipboard.GetDataObject(); dobj.SetData(ty, items); bool checkClipboard = dobj.GetDataPresent(ty);
Why does it return false if "items" is not null? anybody with this problem before? Thanks