
C#
头戴大檐帽
冲锋在Coding的前线,它是爱好,也是兴趣。
展开
-
C# FTP上传(支持断点续传)
当前博文只支持上传功能,已在经过测试,可以直接使用,但请注意你的使用场景,本人FTP服务端使用 FileZilla Server. 废话就不多说了,直接上代码。public class LoadFileEventArgs : CancelEventArgs { /// <summary>Ftp文件</summary> public String Src { get; set; } ...原创 2020-12-18 14:58:10 · 1315 阅读 · 0 评论 -
c# 通过反射属性, 把源对象写入目标对象
/// <summary>/// <typeparam name="T">源对象</typeparam> /// <typeparam name="M">目标对象</typeparam> /// <param name="Sobj"></param> /// <param name="Eobj"&g...原创 2013-05-09 23:00:52 · 613 阅读 · 0 评论 -
Could not load file or assembly 'xxx' or one of its dependencies.
Could not load file or assembly ‘xxx’ or one of its dependencies. The system cannot find the file specified.中文的意思是:无法加载文件或程序集’xxx’或它的某个依赖项。系统无法找到指定的文件 提示某个DLL文件找不到或者它的某个依赖项找不到。 这个问题发生在,我在利用反射,获取其它程序集原创 2015-12-02 22:02:30 · 7862 阅读 · 1 评论