本文介绍了DllImport来调用类的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

HI,

我知道使用dllImport从dll调用方法是可行的

但是,如果我需要使用类名来获取和设置例如:




I know that is posible to call methods from a dll using dllImport
But, If I need to use the class name for a get and a set like:

private ClassName myClassName;
        public ClassName  m_myClassName
        {
            get { return myClassName; }
            set { myClassName= value; }
        }







如何拨打该课程?



谢谢




How can I call that class?

Thanks

推荐答案


这篇关于DllImport来调用类的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-28 11:01