Fork me on GitHub
摘要: using System;using System.Collections;using System.Text;namespace TestConsole{ class Program { static void Main(string[] args) { var bits = new BitArray(4); b... 阅读全文
posted @ 2018-12-27 20:25 虫子樱桃 阅读(996) 评论(0) 推荐(0) 编辑
摘要: 1、订阅序列using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Reactive;using System.Reactive.Linq;using System.Reactive.Subjects;namespace SimpleSequence{ cla... 阅读全文
posted @ 2018-06-08 23:33 虫子樱桃 阅读(685) 评论(0) 推荐(0) 编辑
摘要: [DllImport("kernel32.dll", SetLastError = true)] public static extern UInt32 GetFirmwareEnvironmentVariableA([MarshalAs(UnmanagedType.LPWStr)] string lpName, [MarshalAs(UnmanagedType.LPWStr)] s... 阅读全文
posted @ 2018-03-22 13:09 虫子樱桃 阅读(620) 评论(0) 推荐(0) 编辑
摘要: 将下面内容保存为snippet后缀文件,通过vs的代码片段管理工具导入即可,快捷键请按需修改: 创建路由事件 revt 创建route ev 虫子樱桃 Expansion ... 阅读全文
posted @ 2018-02-28 10:13 虫子樱桃 阅读(523) 评论(1) 推荐(1) 编辑
摘要: 1,IIS下挂载的路径不要填写挂载的盘符,填 \\NFSIP地址\NFSID\ ,正确挂载的前提是在windows下开启了NFS客户端的功能。 2,IIS 网站中读写NFS 也不要用盘符,也用 步骤1中的 \\NFSIP\NFSID\目录\ 3、不能列出目录文件,需要打开目录浏览功能。 4、列出文件 阅读全文
posted @ 2018-01-18 12:56 虫子樱桃 阅读(1800) 评论(3) 推荐(1) 编辑
摘要: 相关dll下载 链接 阅读全文
posted @ 2018-01-17 23:28 虫子樱桃 阅读(324) 评论(0) 推荐(0) 编辑
摘要: 类库下载 I add a wiki page that explains how to use the NFS Client c# .net library in your project. NekoDrive uses a Library written in C# on .NET 2.0. th 阅读全文
posted @ 2018-01-17 20:27 虫子樱桃 阅读(1825) 评论(1) 推荐(0) 编辑
摘要: 下载Mega百度 密码:5pvb 阅读全文
posted @ 2018-01-11 09:39 虫子樱桃 阅读(265) 评论(0) 推荐(0) 编辑
摘要: I wrote a C# class to decode VOX files into WAV files. It follows the Dialogic ADPCM specificationstrictly. If you read through that specification, the code below will become a lot clearer, otherwise ... 阅读全文
posted @ 2018-01-10 21:18 虫子樱桃 阅读(746) 评论(0) 推荐(1) 编辑
摘要: 原文链接 http://dotnetpattern.com/threading-manualreseteventManualResetEvent 和AutoResetEvent一样,是另外一种.NET线程同步技术。ManualResetEvent被用于在两个或多个线程间进行线程信号发送。 多个线程可以通过调用ManualResetEvent对象的WaitOne方法进入等待或阻塞状态。当控... 阅读全文
posted @ 2017-12-22 12:00 虫子樱桃 阅读(7332) 评论(2) 推荐(3) 编辑