资源简介
代码片段和文件信息
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Contract;
namespace Client
{
delegate void DownFile(CustomFileInfo currentDownFile);
class CallBack : ICallBack
{
#region ICallBack 成员
DownFile down = null;
public CallBack(DownFile down)
{
this.down = down;
}
static object obj = new object();
public bool DownFile(CustomFileInfo currentDownFile)
{
lock (obj)
{
if (down != null)
{
down.Invoke(currentDownFile);
return true;
}
return false;
}
}
#endregion
}
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 18944 2010-03-08 09:20 WCFTranFile\Client\bin\Debug\Client.exe
文件 42496 2010-03-08 09:20 WCFTranFile\Client\bin\Debug\Client.pdb
文件 14328 2010-03-08 09:22 WCFTranFile\Client\bin\Debug\Client.vshost.exe
文件 490 2009-06-11 05:14 WCFTranFile\Client\bin\Debug\Client.vshost.exe.manifest
文件 10240 2010-03-04 13:08 WCFTranFile\Client\bin\Debug\Contract.dll
文件 30208 2010-03-04 13:08 WCFTranFile\Client\bin\Debug\Contract.pdb
文件 14848 2010-03-04 13:33 WCFTranFile\Client\bin\Debug\SocketServiceContract.dll
文件 48640 2010-03-04 13:33 WCFTranFile\Client\bin\Debug\SocketServiceContract.pdb
文件 795 2010-03-02 13:51 WCFTranFile\Client\CallBack.cs
文件 4336 2010-03-02 15:33 WCFTranFile\Client\Client.csproj
文件 12019 2010-03-08 09:20 WCFTranFile\Client\MainForm.cs
文件 13244 2010-03-04 09:35 WCFTranFile\Client\MainForm.Designer.cs
文件 5814 2010-03-04 09:35 WCFTranFile\Client\MainForm.resx
文件 1408 2010-03-08 09:22 WCFTranFile\Client\obj\Debug\Client.csproj.FileListAbsolute.txt
文件 850 2010-03-04 13:08 WCFTranFile\Client\obj\Debug\Client.csproj.GenerateResource.Cache
文件 18944 2010-03-08 09:20 WCFTranFile\Client\obj\Debug\Client.exe
文件 180 2010-03-08 09:20 WCFTranFile\Client\obj\Debug\Client.MainForm.resources
文件 42496 2010-03-08 09:20 WCFTranFile\Client\obj\Debug\Client.pdb
文件 180 2010-03-08 09:20 WCFTranFile\Client\obj\Debug\Client.Properties.Resources.resources
文件 490 2010-03-02 15:17 WCFTranFile\Client\Program.cs
文件 1344 2010-03-02 11:24 WCFTranFile\Client\Properties\AssemblyInfo.cs
文件 2862 2010-03-02 11:24 WCFTranFile\Client\Properties\Resources.Designer.cs
文件 5612 2010-03-02 11:24 WCFTranFile\Client\Properties\Resources.resx
文件 1091 2010-03-02 11:24 WCFTranFile\Client\Properties\Settings.Designer.cs
文件 249 2010-03-02 11:24 WCFTranFile\Client\Properties\Settings.settings
文件 10240 2010-03-04 13:08 WCFTranFile\Contract\bin\Debug\Contract.dll
文件 30208 2010-03-04 13:08 WCFTranFile\Contract\bin\Debug\Contract.pdb
文件 14328 2010-03-02 11:17 WCFTranFile\Contract\bin\Debug\Contract.vshost.exe
文件 490 2009-06-11 05:14 WCFTranFile\Contract\bin\Debug\Contract.vshost.exe.manifest
文件 3686 2010-03-02 11:23 WCFTranFile\Contract\Contract.csproj
............此处省略88个文件信息
- 上一篇:asp.net 上传文件
- 下一篇:QQ登录风格皮肤
相关资源
- Hosts文件管理工具
- 通过C#自带的头文件(类)获取Windo
- 基于com串口的文件发送和接收
- ax播放器实现文件拖入播放和拖动到可
- gif图片转换成jpg文件格式
- C#实现 用口令加密Bat文件
- DotNetZip 解压缩 以及分卷压缩类
- C# 快捷查看文件夹下所有文件的MD5
- C# 文件編碼轉換器FileCodeConvert
- C# 文件前后加某些字符串
- 统计大文件每个字符出现的次数
- C# 文件编码转换工具(支持UTF-8/UTF-
- pdf文件打印预览(需安装DevExpress)
- Word文件转Html文档目录
- asp.net 多文件上传源码
- 用C#.NET实现删除指定文件
- C# 批量重命名文件名
- 文件分割合并
- 根据文件列表,合并文本文件,保持
- 提取exe dll文件中的 资源图片文件
- TCP文件合并
- C# 获取本地文件基本信息
- C# 显示最近浏览过的文件
- C# 获取和设置文件夹属性(创建修改
- C# 切分和组合文件
- Html文件上传控件(整理前台使用版)
- web api 文件管理器(附文件上传以及
- C# 解析并修改torrent文件内容 附
- C# 读取 apk文件信息(AndroidManifest.xm
- 生成静态文件
评论
共有 条评论