LoadLibraryEvents
using System;
namespace DynamoServices
{
internal static class LoadLibraryEvents
{
internal static event Action<string, string> LoadLibraryFailure;
internal static void OnLoadLibraryFailure(string failureMessage, string messageBoxTitle)
{
LoadLibraryEvents.LoadLibraryFailure?.Invoke(failureMessage, messageBoxTitle);
}
}
}