2009年12月7日

C#算法(一)

摘要: 一、冒泡排序(Bubble) 代码Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--1publicclassBubbleSorter2{3publicvoidSort(int[]list)4{5inti,j,temp;6booldone=false;7j... 阅读全文

posted @ 2009-12-07 19:34 Mayvar 阅读(249) 评论(0) 推荐(0) 编辑

C# API

摘要: C# APIC:\ProgramFiles\MicrosoftVisual Studio .NET\ FrameworkSDK\Samples\ Technologies\ Interop\PlatformInvoke\ WinAPIs\CS目录下有大量的调用API的例子。一、调用格式using System.Runtime.InteropServices; //引用此名称空间,简化后面的代码//... 阅读全文

posted @ 2009-12-07 14:18 Mayvar 阅读(342) 评论(0) 推荐(0) 编辑

导航