S
SevDer
Thinking for performance & system resources;
I have a string field inside a major object that contains big XML response.
When I am done with it, I want to clear out this field to give some relief
to memory.
Should I use this:
SabreContractResponse.Remove(0,SabreContractResponse.Length);
SabreContractResponse = null;
or just this:
SabreContractResponse = null;
or do you have any other suggestion?
Thanks
I have a string field inside a major object that contains big XML response.
When I am done with it, I want to clear out this field to give some relief
to memory.
Should I use this:
SabreContractResponse.Remove(0,SabreContractResponse.Length);
SabreContractResponse = null;
or just this:
SabreContractResponse = null;
or do you have any other suggestion?
Thanks