Inicjalizacja biblioteki COM nie powiodła się z kodem 0x80010106 w C #

Próbowałem ręcznie przesłać dane do NT za pomocą c #, ale otrzymałem błąd jako: „Nie można zainicjować biblioteki COM (0x80010106).” Dodałem już odnośnik „Ninjatrader.Client.dll”. Zamieszczam mój kod jak poniżej:

using System;
using System.Runtime.InteropServices;
using System.Threading; 
using System.Diagnostics;

namespace read_file
{
 public static class Program
 {
    [DllImport("NtDirect.dll", EntryPoint = "Connected", SetLastError = true)]
    public extern static int Connected(int showMessage);

    [DllImport("NtDirect.dll", SetLastError = true)]
    public static extern int Last(string instrument, double price, int size);

    public static void Main(string[] args)
    {
        NinjaTrader.Client.Client NTClient = new NinjaTrader.Client.Client();
        int ConnectStatus = Connected(1);

        NTClient.Command("PLACE", "Sim101", "ES 03-08", "BUY", 1, "LIMIT", 1245.00, 0,   "GTC", "ax1234", "", "", "");
        int k;
        for (int i = 0; i < 100; i++)
        {
            k = 10 * (i + 1);
            Last("AUDUSD", k, 4);
            for (int j = 0; j < 999999999; j++)
            {
            }
            Console.WriteLine(k);
                        }
        }
    }
 }

proszę powiedz mi poprawną sugestię.

questionAnswers(3)

yourAnswerToTheQuestion