资源简介
通过命名管道实现了C#及C++进程的通信,并支持复制类型数据结构的传输.

代码片段和文件信息
using System;
using System.Runtime.InteropServices;
namespace IPC
{
///
/// Format an object to byte array
///
public static class objectToByteArray
{
///
/// Format an object to byte array
///
///
/// byte array
public static byte[] ToByteArray(this object o)
{
int size = Marshal.SizeOf(o);
byte[] buffer = new byte[size];
IntPtr p = Marshal.AllocHGlobal(size);
try
{
Marshal.StructureToPtr(o p false);
Marshal.Copy(p buffer 0 size);
}
finally
{
Marshal.FreeHGlobal(p);
}
return buffer;
}
}
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 11600 2011-04-08 15:29 IPCDemo\IPC\bin\Debug\IPC.vshost.exe
文件 2637 2011-04-08 15:19 IPCDemo\IPC\IPC.csproj
文件 7895 2011-04-08 15:18 IPCDemo\IPC\NamedPipe\NamedPipe.cs
文件 777 2011-04-08 15:18 IPCDemo\IPC\NamedPipe\NamedPipeClient.cs
文件 654 2011-04-08 15:18 IPCDemo\IPC\NamedPipe\NamedPipeServer.cs
文件 5810 2011-04-08 15:27 IPCDemo\IPC\obj\x86\Debug\DesignTimeResolveAssemblyReferencesInput.cache
文件 877 2011-04-08 15:19 IPCDemo\IPC\ob
文件 904 2011-04-08 15:22 IPCDemo\IPC\Program.cs
文件 1418 2011-04-08 15:15 IPCDemo\IPC\Properties\AssemblyInfo.cs
文件 1972 2011-04-08 15:29 IPCDemo\IPCClient\Debug\IPCClient.Build.CppClean.log
文件 419 2011-04-08 15:29 IPCDemo\IPCClient\Debug\IPCClient.log
文件 3991 2011-03-30 16:48 IPCDemo\IPCClient\IPCClient.vcxproj
文件 1080 2011-03-30 16:48 IPCDemo\IPCClient\IPCClient.vcxproj.filters
文件 143 2011-03-30 15:35 IPCDemo\IPCClient\IPCClient.vcxproj.user
文件 1866 2011-04-08 15:21 IPCDemo\IPCClient\main.cpp
文件 318 2011-03-30 16:46 IPCDemo\IPCClient\memory_leak.h
文件 4031 2011-04-08 15:22 IPCDemo\IPCDemo\IPCDemo.vcxproj
文件 1080 2011-03-30 16:48 IPCDemo\IPCDemo\IPCDemo.vcxproj.filters
文件 143 2011-03-30 14:34 IPCDemo\IPCDemo\IPCDemo.vcxproj.user
文件 2796 2011-04-08 15:26 IPCDemo\IPCDemo\main.cpp
文件 318 2011-03-30 16:47 IPCDemo\IPCDemo\memory_leak.h
文件 3469 2011-04-08 15:17 IPCDemo\IPCDemo.sln
..A..H. 41472 2011-04-08 15:29 IPCDemo\IPCDemo.suo
目录 0 2011-04-08 15:15 IPCDemo\IPC\obj\x86\Debug\TempPE
目录 0 2011-04-08 15:29 IPCDemo\IPC\obj\x86\Debug
目录 0 2011-04-08 15:29 IPCDemo\IPC\bin\Debug
目录 0 2011-04-08 15:16 IPCDemo\IPC\bin\Release
目录 0 2011-04-08 15:15 IPCDemo\IPC\obj\x86
目录 0 2011-04-08 15:16 IPCDemo\IPC\bin
目录 0 2011-04-08 15:15 IPCDemo\IPC\NamedPipe
............此处省略10个文件信息
相关资源
- VC++实现CMD命令执行与获得返回信息
- Beginning C++17 From Novice to Professional
- ftp工具代码
- canape教程(ape.docx)
- 使用 IBM Rational Systems Developer 和 Rati
- 《Data Structures and Algorithm Analysis in C
- snappy压缩,解压算法
- c++P2P视频技术源码(VC++)
- Data Structures and Algorithm Analysis in C++
- BCGControlBar Professional v.28 Full Source
- cv::namedWindowGLFWwindow以及notepad嵌入MF
- C++ 生成Delaunay三角网
- Managing Projects with GNU Make 3rd edition 英
- FastReport_Professtional_5.6.2_Full_Source_for
- C++ for quantitative finance224215
- Data Structures and Algorithm Analysis in C++ (
- Dynamic C 中文手册
- CodeVisionAVR使用简介
- 运用CST方法拟合NACA翼型
- snake算法的C++代码
- ruminations on C++
- FinalProject基于包过滤的防火墙
- 词法分析C++源码
- Delaunay三角网凸包生成算法
- Functional Programming in C++
- More Exceptional C++中文版高清完整.pdf
- C++ 后台服务程序DeamonATE 可开机启动
- Data Structures and Algorithm Analysis in C++
- Dynamic TWAIN ActiveX 3.0(含注册机)
- OpenTSTOOL-1.2
评论
共有 条评论