The json export from csv convert
- .NetCore 8.0 runtime.
- XXXX_RoleAttr.csv split comment and json file name.
CS
-> client and server both,C
-> only client ,S
-> only server,N
-> ignore.- Base type:
INT
STRING
DOUBLE
FLOAT
BOOL
- Compound type:
STRING[]
-> string array split by|
.
eg:text|text|text|text|text
INT[]
-> int array split by|
.
eg:1|2|3|4|5
DOUBLE[]
-> double array split by|
.
eg:1.0|2.0|3.0|4.0|5.0
FLOAT[]
-> float array split by|
.
eg:1.0|2.0|3.0|4.0|5.0
BOOL[]
-> boolean array split by|
.
eg:true|false|true|true|false
STRING[][]
-> two-dimensional string array split by|
and inside by~
.
eg:a1~a2~a3|b1~b2|c1~c2~c3|d1|e1~e2
INT[][]
-> two-dimensional int array split by|
and inside by~
.
eg:1~11~111|2~22|3~33|4~33|5~99
DOUBLE[][]
-> two-dimensional double array split by|
and inside by~
.
eg:1.0~9.2|2.0|3.0~2.3~4.5|4.0|5.0
FLOAT[][]
-> two-dimensional float array split by|
and inside by~
.
eg:1.0~9.2|2.0|3.0~2.3~4.5|4.0|5.0
BOOL[][]
-> two-dimensional boolean array split by|
and inside by~
.
eg:true~false|false~false|true~true|true|false
STRING<>
-> string value dictionaries split by|
and key split by=
.
eg:k1=v|k2=v2|k3=aaa|k4=world|k5=zzz
INT<>
-> int value dictionaries split by|
and key split by=
.
eg:k1=1|k2=22|k3=333|k4=444|k5=555
DOUBLE<>
-> double value dictionaries split by|
and key split by=
.
eg:k1=1.1|k2=22.33|k3=333.44|k4=444.55|k5=555.777
FLOAT<>
-> float value dictionaries split by|
and key split by=
.
eg:k1=1.1|k2=22.33|k3=333.44|k4=444.55|k5=555.777
BOOL<>
-> boolean value dictionaries split by|
and key split by=
.
eg:k1=true|k2=false|k3=true|k4=false|k5=true
STRING<[]>
-> string array value dictionaries split by|
and key split by=
.
eg:k1=aa~bb~cc|k2=v2~ass|k3=aaa~2333|k4=world|k5=zzz~aazzz
INT<[]>
-> int array value dictionaries split by|
and key split by=
.
eg:k1=11~22~33|k2=44~55|k3=55~666|k4=111|k5=3333~22
DOUBLE<[]>
-> double array value dictionaries split by|
and key split by=
.
eg:k1=11.22~22.55~33.25|k2=44.12~55.42|k3=55.1~666.3|k4=111.122|k5=3333.2~22.33
FLOAT<[]>
-> float array value dictionaries split by|
and key split by=
.
eg:k1=11.22~22.55~33.25|k2=44.12~55.42|k3=55.1~666.3|k4=111.122|k5=3333.2~22.33
BOOL<[]>
-> boolean array value dictionaries split by|
and key split by=
.
eg:k1=true~false|k2=false|k3=true~true|k4=false|k5=true
STRING[<>]
-> string dictionaries array split by|
and key split by=
.
eg:k1=aa~k2=bb~k3=cq|k1=sf~k2=as~k3=ass|k1=asas~k2=asas~k3=asas|k1=aa~k2=asas~k3=asas
INT[<>]
-> int dictionaries array split by|
and key split by=
.
eg:k1=12~k2=22~k3=233|k1=2233~k2=211|k1=5444|k1=1233~k2=112~k3=12122
DOUBLE[<>]
-> double dictionaries array split by|
and key split by=
.
eg:k1=12.13312~k2=22.22~k3=233.32|k1=2233.332~k2=211.122|k1=5444.233|k1=1233.233~k2=112.22~k3=12122.1
FLOAT[<>]
-> float dictionaries array split by|
and key split by=
.
eg:k1=12.13312~k2=22.22~k3=233.32|k1=2233.332~k2=211.122|k1=5444.233|k1=1233.233~k2=112.22~k3=12122.1
BOOL[<>]
-> boolean dictionaries array split by|
and key split by=
.
eg:k1=true~k2=false~k3=true|k1=false~k2=true|k1=true|k1=false~k2=true~k3=false
- Emmylua description generator.