Skip to content

Commit d227e31

Browse files
authored
Merge pull request #114530 from sidramadoss/patch-70
Update stream-analytics-edge-csharp-udf-methods.md
2 parents a70296e + 3b451f6 commit d227e31

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

articles/stream-analytics/stream-analytics-edge-csharp-udf-methods.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ For Azure Stream Analytics values to be used in C#, they need to be marshaled fr
4646
|nvarchar(max) | string |
4747
|datetime | DateTime |
4848
|Record | Dictionary\<string, object> |
49-
|Array | Array\<object> |
49+
|Array | Object[] |
5050

5151
The same is true when data needs to be marshaled from C# to Azure Stream Analytics, which happens on the output value of a UDF. The table below shows what types are supported:
5252

@@ -58,7 +58,7 @@ The same is true when data needs to be marshaled from C# to Azure Stream Analyti
5858
|DateTime | dateTime |
5959
|struct | Record |
6060
|object | Record |
61-
|Array\<object> | Array |
61+
|Object[] | Array |
6262
|Dictionary\<string, object> | Record |
6363

6464
## CodeBehind

0 commit comments

Comments
 (0)