-
C# 视频聊天源码
C# 视频聊天源码
- 2015-06-01下载
- 积分:1
-
PHP中的 dateline 转换成 c#中的 datetime 方法 UNIX时间转换
在众多的PHP MySQL的应用之中,存储在MySQL中的时间都是一串数字,后经查这个格式的日期叫做:Unix Timestamp;Unix的timestamp是一组数字,表示从1970年1月1日以来的秒数。今天在进行C#应用开发时需要对MySQL中的数据进行操作,写出以下方法供大家参考。主要应用到的类库有:System.TimeZone应用的方法:返回对应于指定协调通用时间 (UTC) 的本地时间。public virtual DateTime ToLocalTime( DateTime time);1、将系统时间转换成UNIX时间戳 DateTime dtStart = TimeZone.CurrentTimeZone.ToLocalTime(new DateTime(1970,1,1)); DateTime dtNow = DateTime.Parse(DateTime.Now.ToString()); TimeSpan toNow = dtNow.Subtract(dtStart); string timeStamp = toNow.Ticks.ToString(); timeStamp = timeStamp.Substring(0,timeStamp.Length - 7); 2、将UNIX时间戳转换成系统时 string timeStamp = "1176686120"; DateTime dtStart = TimeZone.CurrentTimeZone.ToLocalTime(new DateTime(1970,1,1)); long lTime = long.Parse(timeStamp "0000000"); TimeSpan toNow = new TimeSpan(lTime); DateTime dtResult = dtStart.Add(toNow);
- 2013-11-14下载
- 积分:1
-
C语言参考手册
1.C参考手册.chm 2.C函数查询.chm 3.C语言标准库函数大全.chm 4.C语言库函数使用大全CHM版.chm 5.C语言库函数速查手册.chm
- 2021-05-06下载
- 积分:1
-
数据结构02331 历年自考考题+知识点总结
数据结构02331 历年自考考题 知识点总结
- 2020-12-01下载
- 积分:1
-
c#图形编程例子源码下载(滚动的球)
c#图形编程例子源码下载(滚动的球)
- 2015-04-23下载
- 积分:1
-
C# 类似vs(Visual Studio) 属性设置效果 winform示例源码下载
C# 类似vs(Visual Studio) 属性设置效果 winform示例源码下载
- 2013-10-02下载
- 积分:1
-
C#批量部署站点(包含数据库部署以及iis建站/配置站点)源码下载
数据库的部署 站点的建立以及配置
- 2015-05-07下载
- 积分:1
-
.NET Reflector 5.0 使用例子(反编译软件)
.NET Reflector 5.0 Release Notes 28 December 2006 Reflector is a class browser for .NET components. It allows browsing and searching the meta data, IL instructions, resources and XML documentation stored in a .NET assembly. Reflector was first released in October 2000 running on .NET Framework 1.0 Beta. LINQ and .NET Framework 3.5: Reflector supports query expressions and other concepts introduced in C# 3.5. To enable this feature select ".NET 3.5" under View, Options, Disassembler, Optimization. .NET Framework compatibility: Reflector runs on all versions of the .NET Framework using its own assembly loading infrastructure which does not rely on the Reflection API. For example, Reflector can load .NET Framework 2.0 assemblies without having the .NET Framework 2.0 installed. Assembly Lists: When launched for the first time, Reflector allows you to choose a default set of assemblies. The list of assemblies is then stored in the Reflector.cfg file and will be loaded next time you open the program. Reflector allows creating multiple assembly lists and switching between the lists using the File, Open List dialog. To choose a different set of default assemblies for the current assembly list you should remove all assemblies from the list (DEL) and invoke the Refresh command (F5). Assembly Cache: When resolving an assembly reference, Reflector will first search the local path next to the assembly holding the reference and then falls back to the cache directories defined in the Reflector.cfg file. Reflector does not search the Global Assembly Cache (GAC) unless you add "%SystemRoot%Assembly" to the cache directories list. Assembly Versioning: By default, assembly version numbers are ignored when resolving type and member references. You can enable side-by-side versioning in the options dialog but it is suggested to avoid this if possible. Add-Ins: Information about the Reflector add-in model can be found here. The most recent version of .NET Reflector is available here. Disclaimer: This software is provided "AS IS" with no warranties of any kind. The entire risk arising out of the use or performance of the software is with you.
- 2015-06-15下载
- 积分:1
-
C#车牌识别软件
车牌识别软件### 车牌识别步骤图像的载入 -> 图像的灰度化 -> 图像的灰度均衡化 -> 图像的滤波去噪 -> Sobel边缘检测 -> 车牌定位提取 -> 车牌二值化 -> 车牌字符分割 -> 车牌字符识别
- 2021-05-06下载
- 积分:1
-
NFC协议NDEF
NFC协议NDEF
- 2016-06-13下载
- 积分:1