BACnet.Client.Db.CreateSchemaCommand.Dispose C# (CSharp) Method

Dispose() public method

Disposes of the command
public Dispose ( ) : void
return void
        public void Dispose()
        {
            if (_command != null)
            {
                _command.Dispose();
                _command = null;
            }
        }