[]
Divides one variant by another.
public static Variant operator /(Variant a, Variant b)
| Type | Name | Description |
|---|---|---|
| Variant | a | The Variant to be divided. |
| Variant | b | The divider Variant. |
| Type | Description |
|---|---|
| Variant | The Variant object representing result of division of a by b or Error if given arguments cannot be converted to numbers. |
Divides Variant by double.
public static Variant operator /(Variant a, double b)
| Type | Name | Description |
|---|---|---|
| Variant | a | The Variant to be divided. |
| double | b | The double divider. |
| Type | Description |
|---|---|
| Variant | The Variant object representing result of division of a by b or Error if given arguments cannot be converted to numbers. |