C# 中IntPtr 与 string,数组互转

2024-06-11 20:58

本文主要是介绍C# 中IntPtr 与 string,数组互转,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

一、IntPtr 与 string互转

string str = "aa";

IntPtr init = Marshal.StringToHGlobalAnsi(str);

string ss= Marshal.PtrToStringAnsi(init);

//最后释放掉

Marshal.FreeHGlobal(init);  

二、char*与string互转

 string a = "11";      

 char* aChar = (char*)System.Runtime.InteropServices.Marshal.StringToHGlobalAnsi(a).ToPointer(); 

string result = Marshal.PtrToStringAnsi((IntPtr)aChar);   

三、char* 与 IntPtr互转

可以直接强制类型转换

IntPtr init = (IntPtr)aChar;

char* aChar = (char*)init;

 

在c++里数据转指针是很容易的,但是在托管代码里,转起来就比较费劲了。转换方法如下:
  • 1

internal static IntPtr ArrayToIntptr(byte[] source)
{
if (source == null)
return IntPtr.Zero;
unsafe
{
fixed (byte* point = source)
{
IntPtr ptr = new IntPtr(point);
return ptr;
}
}
}
internal static IntPtr ArrayToIntptr(byte[] source)
{
if (source == null)
return IntPtr.Zero;
byte[] da = source;
IntPtr ptr = Marshal.AllocHGlobal(da.Length);
Marshal.Copy(da, 0, ptr, da.Length);
return ptr;
}
如果不安全代码要用在.net里,只是在项目属性里,设置一下就行,但是要在unity里用的话就必须要加点东西了。
在unity里使用不安全代码时,要在Assetm目录下建一个smcs.rsp文件,在里边写一句-unsafe就行了,这个文件就是一个文本文件,然后改一下后缀名就行。

将数组转换为IntPtr

 
  1. //第一种,使用不安全的代码块来访问直接指向字节数组的指针。

  2. static IntPtr ArrayToIntptr(byte[] source)

  3. {

  4. if (source == null)

  5. {

  6. return IntPtr.Zero;

  7. }

  8.  
  9. unsafe

  10. {

  11. fixed (byte* point = source)

  12. {

  13. IntPtr ptr = new IntPtr(point);

  14. return ptr;

  15. }

  16. }

  17. }

  18.  
  19.  
  20. //第二种,可以使用 GCHandle 来获得对象。

  21. GCHandle

  22. using System.Runtime.InteropServices;

  23.  
  24. byte[] test = new byte[5];

  25. GCHandle hObject = GCHandle.Alloc(test, GCHandleType.Pinned);

  26. IntPtr pObject = hObject.AddrOfPinnedObject();

  27.  
  28. if(hObject.IsAllocated)

  29. {

  30. hObject.Free();

  31. }

  32.  
  33.  
  34. //第三种, 通过 LocalAlloc 创建内存块并将数据封送处理到该内存块。

  35. LocalAlloc

  36. [DllImport("coredll.dll",SetLastError=true)]

  37. public static extern IntPtr LocalAlloc(uint uFlags, uint uBytes);

  38. [DllImport("coredll.dll",SetLastError=true)]

  39. public static extern IntPtr LocalFree(IntPtr hMem);

  40. [DllImport("coredll.dll",SetLastError=true)]

  41. public static extern IntPtr LocalReAlloc(IntPtr hMem, uint uBytes, uint fuFlags);

  42.  
  43. public const uint LMEM_FIXED = 0;

  44. public const uint LMEM_MOVEABLE = 2;

  45. public const uint LMEM_ZEROINIT = 0x0040;

  46.  
  47. byte[] test = new byte[5];

  48. IntPtr p = LocalAlloc(LMEM_FIXED | LMEM_ZEROINIT, (uint)test.Length);

  49.  
  50. if (p == IntPtr.Zero)

  51. {

  52. throw new OutOfMemoryException();

  53. }

  54. else

  55. {

  56. Marshal.Copy(test, 0, p, test.Length);

  57. }

 

这篇关于C# 中IntPtr 与 string,数组互转的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/1052263

相关文章

hdu2241(二分+合并数组)

题意:判断是否存在a+b+c = x,a,b,c分别属于集合A,B,C 如果用暴力会超时,所以这里用到了数组合并,将b,c数组合并成d,d数组存的是b,c数组元素的和,然后对d数组进行二分就可以了 代码如下(附注释): #include<iostream>#include<algorithm>#include<cstring>#include<stack>#include<que

2. c#从不同cs的文件调用函数

1.文件目录如下: 2. Program.cs文件的主函数如下 using System;using System.Collections.Generic;using System.Linq;using System.Threading.Tasks;using System.Windows.Forms;namespace datasAnalysis{internal static

C#实战|大乐透选号器[6]:实现实时显示已选择的红蓝球数量

哈喽,你好啊,我是雷工。 关于大乐透选号器在前面已经记录了5篇笔记,这是第6篇; 接下来实现实时显示当前选中红球数量,蓝球数量; 以下为练习笔记。 01 效果演示 当选择和取消选择红球或蓝球时,在对应的位置显示实时已选择的红球、蓝球的数量; 02 标签名称 分别设置Label标签名称为:lblRedCount、lblBlueCount

hdu 1166 敌兵布阵(树状数组 or 线段树)

题意是求一个线段的和,在线段上可以进行加减的修改。 树状数组的模板题。 代码: #include <stdio.h>#include <string.h>const int maxn = 50000 + 1;int c[maxn];int n;int lowbit(int x){return x & -x;}void add(int x, int num){while

用命令行的方式启动.netcore webapi

用命令行的方式启动.netcore web项目 进入指定的项目文件夹,比如我发布后的代码放在下面文件夹中 在此地址栏中输入“cmd”,打开命令提示符,进入到发布代码目录 命令行启动.netcore项目的命令为:  dotnet 项目启动文件.dll --urls="http://*:对外端口" --ip="本机ip" --port=项目内部端口 例: dotnet Imagine.M

C语言:柔性数组

数组定义 柔性数组 err int arr[0] = {0}; // ERROR 柔性数组 // 常见struct Test{int len;char arr[1024];} // 柔性数组struct Test{int len;char arr[0];}struct Test *t;t = malloc(sizeof(Test) + 11);strcpy(t->arr,

C 语言基础之数组

文章目录 什么是数组数组变量的声明多维数组 什么是数组 数组,顾名思义,就是一组数。 假如班上有 30 个同学,让你编程统计每个人的分数,求最高分、最低分、平均分等。如果不知道数组,你只能这样写代码: int ZhangSan_score = 95;int LiSi_score = 90;......int LiuDong_score = 100;int Zhou

C# dateTimePicker 显示年月日,时分秒

dateTimePicker默认只显示日期,如果需要显示年月日,时分秒,只需要以下两步: 1.dateTimePicker1.Format = DateTimePickerFormat.Time 2.dateTimePicker1.CustomFormat = yyyy-MM-dd HH:mm:ss Tips:  a. dateTimePicker1.ShowUpDown = t

C#关闭指定时间段的Excel进程的方法

private DateTime beforeTime;            //Excel启动之前时间          private DateTime afterTime;               //Excel启动之后时间          //举例          beforeTime = DateTime.Now;          Excel.Applicat

C# 防止按钮botton重复“点击”的方法

在使用C#的按钮控件的时候,经常我们想如果出现了多次点击的时候只让其在执行的时候只响应一次。这个时候很多人可能会想到使用Enable=false, 但是实际情况是还是会被多次触发,因为C#采用的是消息队列机制,这个时候我们只需要在Enable = true 之前加一句 Application.DoEvents();就能达到防止重复点击的问题。 private void btnGenerateSh