web-dev-qa-db-ja.com

C#のCreateObjectの同等のコード

VB6にコードがあります。誰でもC#でそれを書く方法を教えてもらえますか?このコードは次のとおりです。

Set Amibroker = CreateObject("Broker.Application")
Set STOCK = Amibroker.Stocks.Add(ticker)
Set quote = STOCK.Quotations.Add(stInDate)

quote.Open = stInOpen
quote.High = stInHigh
quote.Low = stInlow
quote.Close = stInYcp
quote.Volume = stInVolume


Set STOCK = Nothing
Set quote = Nothing

C#のCreateObjectと同等のものは何ですか?参照をcomオブジェクトに追加しようとしましたが、Broker.Applicationまたはamibrokerとしてcomオブジェクトが見つかりません

18
dralialadin

.net 4以降を使用しているため、dynamicを使用できる場合は、これを非常に簡単に行うことができます。以下は、Excelオートメーションインターフェイスを使用した例です。

Type ExcelType = Type.GetTypeFromProgID("Excel.Application");
dynamic ExcelInst = Activator.CreateInstance(ExcelType);
ExcelInst.Visible = true;

ダイナミックを使用できない場合は、はるかに面倒です。

Type ExcelType = Type.GetTypeFromProgID("Excel.Application");
object ExcelInst = Activator.CreateInstance(ExcelType);
ExcelType.InvokeMember("Visible", BindingFlags.SetProperty, null, 
    ExcelInst, new object[1] {true});

その多くをしようとすると、あなたからの生命線が奪われます。

上記のようにレイトバインドではなくアーリーバインドディスパッチを使用できる場合、COMは非常に簡単です。 COMオブジェクトの正しい参照が見つからないことを確認しますか?

36
David Heffernan

.NET Framework 4.0以降を使用している場合、次のパターンを使用できます。

public sealed class Application: MarshalByRefObject {

    private readonly dynamic _application;


    // Methods
    public Application() {
        const string progId = "Broker.Application";
        _application = Activator.CreateInstance(Type.GetTypeFromProgID(progId));
    }

    public Application(dynamic application) {
        _application = application;
    }

    public int Import(ImportType type, string path) {
        return _application.Import((short) type, path);
    }

    public int Import(ImportType type, string path, string defFileName) {
        return _application.Import((short) type, path, defFileName);
    }

    public bool LoadDatabase(string path) {
        return _application.LoadDatabase(path);
    }

    public bool LoadLayout(string path) {
        return _application.LoadLayout(path);
    }

    public int Log(ImportLog action) {
        return _application.Log((short) action);
    }

    public void Quit() {
        _application.Quit();
    }

    public void RefreshAll() {
        _application.RefreshAll();
    }

    public void SaveDatabase() {
        _application.SaveDatabase();
    }

    public bool SaveLayout(string path) {
        return _application.SaveLayout(path);
    }

    // Properties
    public Document ActiveDocument {
        get {
            var document = _application.ActiveDocument;
            return document != null ? new Document(document) : null;
        }
    }

    public Window ActiveWindow {
        get {
            var window = _application.ActiveWindow;
            return window != null ? new Window(window) : null;
        }
    }

    public AnalysisDocs AnalysisDocs {
        get {
            var analysisDocs = _application.AnalysisDocs;
            return analysisDocs != null ? new AnalysisDocs(analysisDocs) : null;
        }
    }

    public Commentary Commentary {
        get {
            var commentary = _application.Commentary;
            return commentary != null ? new Commentary(commentary) : null;
        }
    }

    public Documents Documents {
        get {
            var documents = _application.Documents;
            return documents != null ? new Documents(documents) : null;
        }
    }


    public string DatabasePath {
        get { return _application.DatabasePath; }
    }

    public bool Visible {
        get { return _application.Visible != 0; }
        set { _application.Visible = value ? 1 : 0; }
    }

    public string Version {
        get { return _application.Version; }
    }
}

}

次に、すべてのAmiBroker OLE Automationクラスをラップする必要があります。たとえば、Commentaryクラスをラップします。

public sealed class Commentary : MarshalByRefObject {

    // Fields
    private readonly dynamic _commentary;


    // Methods
    internal Commentary(dynamic commentary) {
        _commentary = commentary;
    }

    public void Apply() {
        _commentary.Apply();
    }

    public void Close() {
        _commentary.Close();
    }

    public bool LoadFormula(string path) {
        return _commentary.LoadFormula(path);
    }

    public bool Save(string path) {
        return _commentary.Save(path);
    }

    public bool SaveFormula(string path) {
        return _commentary.SaveFormula(path);
    }
}
5
Eldar Agalarov

これは、Amibrokerを自動化するために使用したC#コードのスニペットです(そのパスをたどったときから)。 System.Runtime.Interopservicesを参照する必要があります。

    System.Type objType = System.Type.GetTypeFromProgID("Broker.Application");

    dynamic comObject = System.Activator.CreateInstance(objType);

    comObject.Import(0, fileName, "default.format");

    comObject.RefreshAll();

ただし、ドットを入力してもcomObject内部メソッドは表示されません。

私がこの方法について言えることは、それは魅力のように機能しますが、デビッドが言ったように、それから離れてください。この方法のインスピレーションは以下から得ました。

http://www.codeproject.com/Articles/148959/How-the-new-C-dynamic-type-can-simplify-access-to

別の攻撃角度については、チェックアウトすることをお勧めします(これは早期バインディングだと思います)。

http://adamprescott.net/2012/04/05/net-vb6-interop-tutorial/

これの少なくともいくつかがあなたを助けることを願っています。私はこれら両方の方法をAmibrokerとC#で使用しましたが、結局それらを残してしまいました。 COMとAmibrokerはうまく混ざりません。 TJでさえそう言います。

とにかく頑張ってください。

5
Sethmo011