diff options
author | Sergey Chebotar <s.chebotar@gmail.com> | 2023-06-23 07:56:44 +0300 |
---|---|---|
committer | Sergey Chebotar <s.chebotar@gmail.com> | 2023-06-23 07:56:44 +0300 |
commit | 77944bbf9ef7f3c42f5fa12d4893b7c3f3ce7aa7 (patch) | |
tree | b826ef14893a5b3e65ea36d3286f7fbd26ba71ba | |
parent | 7905d3af4d32405ef041de897bf2d23ee7d6d08e (diff) |
Add array function
-rw-r--r-- | ExcelFunctions.cs | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/ExcelFunctions.cs b/ExcelFunctions.cs index 9394a81..ce3c280 100644 --- a/ExcelFunctions.cs +++ b/ExcelFunctions.cs @@ -32,5 +32,16 @@ public static class ExcelFunctions return Math.Round(requestResult, 2); } } + + [ExcelFunction] + public static object[] ArrayReturn() + { + return new[] + { + "One", + "Two", + "Tree" + }; + } } |