We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 45ee9c0 commit 77471abCopy full SHA for 77471ab
docs/guides-basic/dotnet-native-aot-support.md
@@ -337,6 +337,23 @@ public static DateTimeKind NativeEnumReturn(string s)
337
| A4 | =NativeEnumReturn("Unspecified") | Unspecified
338
| A5 | =NativeEnumReturn("Local") | Local
339
340
+## String array parameter
341
+
342
+```csharp
343
+[ExcelFunction]
344
+public static string NativeStringArray(string[] s)
345
+{
346
+ return "Native StringArray VALS: " + string.Concat(s);
347
+}
348
+```
349
350
+| Cell | Formula | Result
351
+| ----- | --------------------------| ------
352
+| A1 | 01 |
353
+| A2 | 2.30 |
354
+| A3 | World |
355
+| B1 | =NativeStringArray(A1:A3) | Native StringArray VALS: 12.3World
356
357
# Not supported functionality in native add-ins
358
359
Loading images for ribbon controls.
0 commit comments