• c++、C#互调用之c# 调用 vc6 COM


    1、vc6 创建com

    使用VC6.0建立COM组件,工程类型:ATL COM AppWizard

    程序代码:

    接口:

    interface IAdd : IDispatch
            {
                    [id(1), helpstring("method iadd")] HRESULT iadd([in]int a, [in]int b, [out]int * c);
                    [id(2), helpstring("method fadd")] HRESULT fadd([in]float a, [in]float b, [out]float * c);
                    [id(3), helpstring("method isub")] HRESULT isub([in]int a, [in]int b, [out]int * c);
            };


    实现:

    STDMETHODIMP CAdd::iadd(int a, int b, int *c)
    {
            // TODO: Add your implementation code here
            *c = a + b;
    
            return S_OK;
    }
    
    STDMETHODIMP CAdd::fadd(float a, float b, float *c)
    {
            // TODO: Add your implementation code here
            *c = a + b;
    
            return S_OK;
    }
    
    STDMETHODIMP CAdd::isub(int a, int b, int *c)
    {
            // TODO: Add your implementation code here
            *c = a - b;
    
            return S_OK;
    }

    2、VS2005使用C#编写调用程序(Form程序)

    使用VS2005建立网站UseCom

    配置:在解决方案资源管理器中的主目录点击右键,选择添加引用,选择COM,添加刚刚建立的AddCom 1.0 Type Library

    在程序中要using编写的COM组件:using ADDCOMLib;

    程序代码:

    using System;
    using System.Collections.Generic;
    using System.ComponentModel;
    using System.Data;
    using System.Drawing;
    using System.Linq;
    using System.Text;
    using System.Windows.Forms;
    using VCADDCOMLib;

    namespace sharpUseVcCom
    {
        public partial class Form1 : Form
        {
            public Form1()
            {
                InitializeComponent();
                VcAddComm add = new VcAddComm();
                int iresult;
                float fresult;
                int sresult;

                add.iadd(10, 20, out iresult);
                add.fadd((float)1.2, (float)2.3, out fresult);
                add.isub(100, 10, out sresult);

                label4.Text = iresult.ToString();
                label5.Text = fresult.ToString();
                label6.Text = sresult.ToString();

            }
        }
    }


     

  • 相关阅读:
    轻量模型之Mobilenet
    GAN的Loss
    Ubuntu16.04安装后配置一条龙
    Hardnet论文阅读
    orb-slam2编译时遇到的问题
    编译opencv+opencv_contrib
    Sophus库使用踩坑
    CloudCompare Viewer使用心得
    交通场景语义分割
    ROS编译中遇到的问题
  • 原文地址:https://www.cnblogs.com/MayGarden/p/1629592.html
Copyright © 2020-2023  润新知