diff --git a/bindings/csharp/openalpr-net/openalpr-net.cpp b/bindings/csharp/openalpr-net/openalpr-net.cpp index 7ac9769..a8103d0 100644 --- a/bindings/csharp/openalpr-net/openalpr-net.cpp +++ b/bindings/csharp/openalpr-net/openalpr-net.cpp @@ -295,7 +295,7 @@ namespace openalprnet { { public: // Allocate the native object on the C++ Heap via a constructor - AlprNet(System::String^ country, System::String^ configFile) : m_Impl( new Alpr(marshal_as(country), marshal_as(configFile)) ) { } + AlprNet(System::String^ country, System::String^ configFile, System::String^ runtimeDir) : m_Impl( new Alpr(marshal_as(country), marshal_as(configFile), marshal_as(runtimeDir)) ) { } // Deallocate the native object on a destructor ~AlprNet(){