PartType C#

Sentence - fixed string value

sentence

String - user's custom value. Value that user can write for example: "Johnny Depp"

string

Enum - list of given values. Example:

enum

Bool - possible input values: "true", "false", "1", "0"

example of 'sentence' + 'bool'

Integer - Example of possible value: "21"

sentence + int

Float - Example of possible values: "15,15" ("15.15" will be incorrect, only comma symbol works)

sentence + float

Last updated