File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -66,11 +66,13 @@ Under `input` is the `parameters` section which contains a list of key-value pai
6666
6767The supported types are :
6868
69- * string
70- * bool
71- * datetime
72- * number
73- * object
69+ | Parameter Type | Dotnet Type | C# Equivalent |
70+ |----------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------|
71+ | string | System.String | string |
72+ | bool | System.Boolean | bool |
73+ | datetime | System.DateTimeOffset | System.DateTimeOffset |
74+ | number | System.Byte<br/>System.SByte<br/>System.UInt16<br/>System.Int16<br/>System.UInt32<br/>System.Int32<br/>System.UInt64<br/>System.Int64<br/>System.Single<br/>System.Double<br/>System.Decimal | byte<br/>sbyte<br/>ushort<br/>short<br/>uint<br/>int<br/>ulong<br/>long<br/>float<br/>double<br/>decimal |
75+ | object | System.Object | object |
7476
7577The first 4 are used as provided. Objects which are passed to the prompt will have their `ToString` method called to be used in the prompt.
7678
You can’t perform that action at this time.
0 commit comments