The main difference between built-in data types and user defined data types is that: built-in data types can accept literal values(values inserted into code directly,this process is also know as hard-codding).
So is it possible create custom data type same as boolean which accepts three values: yes/no/maybe WITHOUT USING enums.
such as following code:
MyCustomBoolean a = maybe;
I asked above question because i want to understand that built-in data types in C# are instructed in Core Language(such as C++ int,char...) or no?
---Update---
for the second question,let me ask a question to make the 2nd question more clear:
I know that for example string is alias of System.String but does pure string in C# works without System.String?
You can have a nullable bool instead for this specific case. With typical operations like:
Where the maybe would be null, or having
HasValue == false
.