Skip to content

Commit 3eefe78

Browse files
committed
change type information presentation format
1 parent 5c2640a commit 3eefe78

1 file changed

Lines changed: 7 additions & 5 deletions

File tree

README.md

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -66,11 +66,13 @@ Under `input` is the `parameters` section which contains a list of key-value pai
6666

6767
The 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

7577
The 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

0 commit comments

Comments
 (0)