Is Close() same as Using statement
问题 Is Close() same as Dispose() or using statement. Is it necessary to call using statement even if Close is called?. I know before disposing of an object, close should be called, so we close the resource and may it available to Dispose . https://msdn.microsoft.com/en-us/library/aa355056(v=vs.110).aspx says Close is same as Dispose . 回答1: Close() has no relation to IDisposable interface, see: https://msdn.microsoft.com/en-us/library/system.idisposable(v=vs.110).aspx using only applies to