局域网内的快速拷贝工具 ====================================================================== FastCopy ver2.11 2012/06/18 SHIROUZU Hiroaki ====================================================================== FastCopy is the Fastest Copy/Delete Software on Wi
快速拷贝专家,最好用的拷贝工具 FastCopy is the Fastest Copy/Delete Software on Windows. It can copy/delete unicode and over MAX_PATH(260byte) pathname files. Automatically, after whether the copy origin and copy destinations are HDD according to same physical HDD
FastCopy ver2.08 2011/02/28 SHIROUZU Hiroaki FastCopy is the Fastest Copy/Delete Software on Windows. It can copy/delete unicode and over MAX_PATH(260byte) pathname files. It always run by multi-threading. It don't use MFC, it is compact and don't r
本文实例讲述了C#通过指针实现快速拷贝的方法。分享给大家供大家参考。具体实现方法如下:
// fastcopy.cs
// 编译时使用:/unsafe
using System;
class Test
{
// unsafe 关键字允许在下列
// 方法中使用指针:
static unsafe void Copy(byte[] src, int srcIndex, byte[] dst, int dstIndex, int count)
{
if (src == nul