mirror of
https://github.com/wagesj45/CapyKit.git
synced 2024-11-14 04:03:36 -06:00
40 lines
624 B
Markdown
40 lines
624 B
Markdown
|
# MeasurementSystem Enumeration
|
||
|
|
||
|
|
||
|
An enumeration representing different measurement systems.
|
||
|
|
||
|
|
||
|
|
||
|
## Definition
|
||
|
**Namespace:** <a href="N_CapyKit_Enumerations.md">CapyKit.Enumerations</a>
|
||
|
**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0
|
||
|
|
||
|
**C#**
|
||
|
``` C#
|
||
|
public enum MeasurementSystem
|
||
|
```
|
||
|
**F#**
|
||
|
``` F#
|
||
|
type MeasurementSystem
|
||
|
```
|
||
|
|
||
|
|
||
|
|
||
|
## Members
|
||
|
<table>
|
||
|
<tr>
|
||
|
<td>Imperial</td>
|
||
|
<td>0</td>
|
||
|
<td>The imperial measurement system.</td></tr>
|
||
|
<tr>
|
||
|
<td>Metric</td>
|
||
|
<td>1</td>
|
||
|
<td>The metric measurement system.</td></tr>
|
||
|
</table>
|
||
|
|
||
|
## See Also
|
||
|
|
||
|
|
||
|
#### Reference
|
||
|
<a href="N_CapyKit_Enumerations.md">CapyKit.Enumerations Namespace</a>
|