有没有办法将c ++ gdi + pen转换为C#pen

时间:2012-06-27 16:36:47

标签: c# c++ gdi+

在c ++项目中,我创建了一个gdi + pen.c ++代码示例:

long GetPen()
{
  Pen *pen = new Pen(Color.Red);

  return (long)pen; 
}

在c#项目中,我想用c ++ project.c创建gdi + pen##code example:

[DllImport("xxxx.dll")]
public static extern IntPtr GetPen();

public void test()
{
   Intptr penptr = GetPen();

   //i want to convert the penptr to C# pen,is there any way?
}

0 个答案:

没有答案