本文介绍了C#中的LPCTSTR等价的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
亲爱的,
我有以下带有两个参数的API
OpenDev(BYTE byType,LPCTSTR szDescription)
我如何在C#中使用此方法
LPCTSTR的等效性是什么?
问候,
Dears,
I have the following API that takes two parameters
OpenDev(BYTE byType,LPCTSTR szDescription)
how can i use this method in C#
what is the equivalence of LPCTSTR?
Regards,
推荐答案
[DllImport(whatever.dll)]
static extern void OpenDev(byte byType, string szDescription)
这篇关于C#中的LPCTSTR等价的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!