In VB OLE the object is set to Nothing
.
I am porting now this code to C#.
Must I set this object in C# to null
or is this not necessary?
VB
Set Session oSession = CreateObject("session")
...
Set oSession = Nothing
In C#
var oSession = new Session();
...
oSession = null;
Is this the same?