【ZZ】技能表合集
摘要:技能表 http://w.itcodemonkey.com/tag/373.html 1 当一名黑客应该学什么?来看看安全工程师技能表 2 软件测试工程师技能表 3 大数据、数据挖掘技能表 4 C/C++程序员技能表 5 Python开发技能表 6 PHP程序员技能表 7 Web前端开发技能表 8
阅读全文
posted @
2018-03-30 08:45
浩然119
阅读(252)
推荐(0)
学习笔记之Unit testing/Integration testing/dotnet test and xUnit
摘要:source code https://github.com/haotang923/dotnet/tree/master/src Unit testing C# code in .NET Core using dotnet test and xUnit | Microsoft Docs https:
阅读全文
posted @
2018-03-22 08:20
浩然119
阅读(268)
推荐(0)
学习笔记之C# / .NET Core 2.0
摘要:C# 教程 | 菜鸟教程 http://www.runoob.com/csharp/csharp-tutorial.html .NET API Browser | Microsoft Docs https://docs.microsoft.com/en-gb/dotnet/api/index?vie
阅读全文
posted @
2018-03-22 07:14
浩然119
阅读(392)
推荐(0)
【ZZ】各类程序开发语言概述 | 菜鸟教程
摘要:http://www.runoob.com/w3cnote/programming-intro.html 各类程序开发语言概述, 点击查看大图:
阅读全文
posted @
2017-12-20 11:30
浩然119
阅读(242)
推荐(0)
学习笔记之C# 教程 | 菜鸟教程
摘要:C# 教程 | 菜鸟教程 http://www.runoob.com/csharp/csharp-tutorial.html 菜鸟教程在线编辑器 http://www.runoob.com/try/runcode.php?filename=HelloWorld&type=cs C# Programm
阅读全文
posted @
2017-12-12 06:13
浩然119
阅读(7196)
推荐(1)
C#中Strings VS. StringBuilder
摘要:String Class (System) | Microsoft Docs https://docs.microsoft.com/en-us/dotnet/api/system.string?view=netframework-4.7.1 Strings @MSDN http://msdn.mic
阅读全文
posted @
2014-10-05 11:01
浩然119
阅读(697)
推荐(0)
C#中Time
摘要:DateTime Structurehttp://msdn.microsoft.com/en-us/library/system.datetime.aspxTimeSpan Structurehttp://msdn.microsoft.com/en-us/library/system.timespan.aspx
阅读全文
posted @
2012-07-10 17:57
浩然119
阅读(230)
推荐(0)
C#中如何创建文件夹
摘要:C#中对文件夹操作需要用到Directory Class。其中提供了创建、删除、移动、枚举等静态方法。该类不能被继承。以下代码实现了创建文件夹。以下是MSDN上Directory Class的Sample code。http://msdn.microsoft.com/en-us/library/system.io.directory.aspx以下代码首先检查指定的文件夹是否存在,若存在则删除之,否则创建之。接下来移动文件夹,在其中创建文件并统计文件夹中文件数目。以下代码演示了如何计算文件夹大小。
阅读全文
posted @
2011-01-26 17:13
浩然119
阅读(117758)
推荐(5)
C#中如何获取系统环境变量
摘要:C#中获取系统环境变量需要用到Environment Class。其中提供了有关当前环境和平台的信息以及操作它们的方法。该类不能被继承。以下代码得到%systemdrive%的值,即“C:”string sPath = Environment.GetEnvironmentVariable("systemdrive")以下是MSDN上Environment Class的Sample code。http://msdn.microsoft.com/en-us/library/system.environment.aspx以下代码列出了当前系统的环境信息。
阅读全文
posted @
2011-01-26 02:29
浩然119
阅读(17154)
推荐(0)
C#调用非托管的DLL文件
摘要:写了段C#代码实现了调用C++写的非托管DLLAccess C++(unmanaged) APIs using C#---------------------------------------------System.Runtime.InteropServices Namespacehttp://msdn.microsoft.com/en-us/library/9esea608%28v=VS.8...
阅读全文
posted @
2010-10-25 01:54
浩然119
阅读(567)
推荐(0)
C#实现对程序打包调用
摘要:写了一段程序实现对另一个程序打包调用,同时可以加入一些延迟之类的操作,需要注意的是导入所有被调程序需要的参数,导出所有其返回的值。--------------------CallProgram参考:http://msdn.microsoft.com/en-us/library/system.diagnostics.process(VS.71).aspx
阅读全文
posted @
2010-10-21 17:50
浩然119
阅读(273)
推荐(0)
[ZZ]byte[]到short、int、long的相互转换
摘要:public final static byte[] getBytes(short s, boolean asc) { byte[] buf = new byte[2]; if (asc) for (int i = buf.length - 1; i >= 0; i--) { buf[i] = (byte) (s & 0x00ff); s >>= 8; } ...
阅读全文
posted @
2010-10-08 15:12
浩然119
阅读(6450)
推荐(0)