Am using COM interop in my C# application.
I've this line of code:
IMyInterface objData = MyCOMClass.GetData();
My question here is:
Do I need to release resources on objData by using? System.Runtime.InteropServices.Marshal.ReleaseComObject(objData);
Thanks for reading.