I've written this little C# test DLL using UnmanagedExports (obtained as a NuGet package), which is working fine. However, I'm wondering if, and if so how, it's possible to immediately return a String() array instead of returning a string which has to be Split() in a VBA wrapper function.
That is to say, the point of interest is the method GetFilesWithExtension(). The other methods in the dll are just small tests I made while figuring out how to pass strings with the correct encoding.
The DLL targets x64 and .NET 4.5.2, but you should be able to build for x86 as well (and accordingly change the Function Declares in VBA).
C# class library (TestDll.dll):
using System;
using System.IO;
using System.Linq;
using System.Runtime.InteropServices;
using RGiesecke.DllExport;
namespace TestDll
{
public class Class1
{
[DllExport(nameof(Addition), CallingConvention.StdCall)]
public static int Addition(int a, int b)
{
return a + b + 100;
}
[DllExport(nameof(LinqAddition), CallingConvention.StdCall)]
public static int LinqAddition(int a, int b)
{
return new int[] {a, b, 1, 4, 5, 6, 7, 8 }.Sum();
}
[DllExport(nameof(LinqAdditionString), CallingConvention.StdCall)]
[return: MarshalAs(UnmanagedType.AnsiBStr)]
public static string LinqAdditionString(int a, int b)
{
return new int[] { a, b, 1, 4, 5, 6, 7, 8 }.Sum() + "";
}
[DllExport(nameof(GetFilesWithExtension), CallingConvention.StdCall)]
[return: MarshalAs(UnmanagedType.AnsiBStr)]
public static string GetFilesWithExtension([MarshalAs(UnmanagedType.AnsiBStr)] string folderPath, [MarshalAs(UnmanagedType.AnsiBStr)] string extension, bool includeSubdirectories)
{
//Debug
//File.WriteAllText(@"C:\Users\johanb\Source\Repos\TestDll\output.txt", $"folderPath: {folderPath}, extension: {extension}, includeSubdirectories: {includeSubdirectories}");
try
{
if (!Directory.Exists(folderPath))
return "";
extension = extension.Trim('.');
return string.Join(";",
Directory.GetFiles(folderPath, "*.*",
includeSubdirectories ? SearchOption.AllDirectories : SearchOption.TopDirectoryOnly)
.Where(
f =>
Path.GetExtension(f)?
.Trim('.')
.Equals(extension, StringComparison.InvariantCultureIgnoreCase) ?? false)
.ToArray());
}
catch (Exception ex)
{
return ex.ToString();
}
}
}
}
VBA module (tested in Excel):
Attribute VB_Name = "TestDll"
Option Explicit
Public Declare PtrSafe Function Addition Lib "C:\Users\johanb\Source\Repos\TestDll\TestDll\bin\Debug\TestDll.dll" (ByVal a As Long, ByVal b As Long) As Long
Public Declare PtrSafe Function LinqAddition Lib "C:\Users\johanb\Source\Repos\TestDll\TestDll\bin\Debug\TestDll.dll" (ByVal a As Long, ByVal b As Long) As Long
Public Declare PtrSafe Function LinqAdditionString Lib "C:\Users\johanb\Source\Repos\TestDll\TestDll\bin\Debug\TestDll.dll" (ByVal a As Long, ByVal b As Long) As String
Public Declare PtrSafe Function GetFilesWithExt Lib "C:\Users\johanb\Source\Repos\TestDll\TestDll\bin\Debug\TestDll.dll" Alias "GetFilesWithExtension" (ByVal folderPath As String, ByVal extension As String, ByVal includeSubdirs As Boolean) As String
Sub Test()
Dim someAddition As Long
Dim someLinqAddition As Long
Dim someLinqAdditionAsString As String
Dim files() As String
Dim i As Long
someAddition = Addition(5, 3)
Debug.Print someAddition
someLinqAddition = LinqAddition(5, 3)
Debug.Print someLinqAddition
someLinqAdditionAsString = LinqAdditionString(5, 3)
Debug.Print someLinqAddition
files = GetFilesWithExtension("C:\Tradostest\Project 4", "sdlxliff", True)
For i = 0 To UBound(files)
Debug.Print files(i)
Next i
End Sub
Function GetFilesWithExtension(folderPath As String, extension As String, includeSubdirs As Boolean) As String()
GetFilesWithExtension = Split(GetFilesWithExt(folderPath, extension, includeSubdirs), ";")
End Function
I could never quite get returning an object to Excel to work, but passing an object by reference back and forth works just fine. For whatever reason, I had to use the keyword ref instead of out, otherwise Excel would crash.
I also had to use UnmanagedType.AnsiBstr for strings to get the encoding right, but for string arrays, the only way I could get it to work was declaring it as an object and do the type checking at run time at the start of the method.
I can use my DLL in Excel as below, using LoadLibrary(), so that I don't have to place it in the user's system folder or register for COM. The advantage of using FreeLibrary() is that it allows me to recompile the C# project without closing Excel.
It is also possible to pass COM objects from VBA to a DLL like this and process them using the standard Microsoft Interop libraries or NetOffice, and I've managed to write a method that filters VBA string arrays by the string representation of a C# lambda expression, which sounds like it might come in handy for many people:
You can find the entire project on GitLab.