Summary
A trinary logic value: true, false, or unspecified.
		- Assembly
 - Weaver
.dll  - Namespace
 - Weaver
 - Base Types
 - 
									
- Enum
 
 
							graph BT
	Type-->Base0["Enum"]
	Type["OptionalBool"]
class Type type-node
						
					Syntax
public enum OptionalBool
			Fields
| Name | Constant Value | Summary | 
|---|---|---|
| False | 2 | 
									 False, regardless of the default setting. 
											static 
								 | 
							
| True | 1 | 
									 True, regardless of the default setting. 
											static 
								 | 
							
| Unspecified | 0 | 
									 Use the default setting. 
											static 
								 | 
							
Extension Methods
| Name | Value | Summary | 
|---|---|---|
| ToBool | 
								bool | 
									 
    Returns the  
										bool value corresponding to the specified `optional` value.
    From WeaverUtilities 
								 |