Method Remove
Remove(string)
Removes a variable with the specified name.
Declaration
public bool Remove(string name)
Parameters
| Type | Name | Description |
|---|---|---|
| string | name |
Returns
| Type | Description |
|---|---|
| bool | true if a variable with the specified name was removed, false if one was not. |
Remove(KeyValuePair<string, IVariable>)
Removes a variable with the specified key.
Declaration
public bool Remove(KeyValuePair<string, IVariable> item)
Parameters
| Type | Name | Description |
|---|---|---|
| KeyValuePair<string, IVariable> | item | The item to be removed, only the Key field will be considered. |
Returns
| Type | Description |
|---|---|
| bool | true if a variable with the specified name was removed, false if one was not. |