79315624

Date: 2024-12-29 13:00:25
Score: 2
Natty:
Report link

You can solve the issue by loading the dll from your code:

string assemblyLocation = Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location);

string xceedDllPath = Path.Combine(assemblyLocation, "Xceed.Wpf.Toolkit.dll");

Assembly.LoadFile(xceedDllPath);

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Guy Hareuveni