上一页 1 ··· 93 94 95 96 97 98 99 100 101 ··· 107 下一页

2005年12月29日

C++(new and malloc0

摘要: http://www.programfan.com/club/showbbs.asp?id=1280976楼说的没错对于象int,char,float这一类的基本数据类型和只含成员变量的结构体来说,用new和malloc()是一样的,对应的delete和free()也是一样的.而对于类则不一样,new操作先申请内存,然后还要调用类的构造函数,而malloc()只是申请一块内存而已,对应的d... 阅读全文

posted @ 2005-12-29 21:50 cy163 阅读(433) 评论(0) 推荐(0)

2005年12月28日

13G编程电子书开始提供BT下载

摘要: http://blog.csdn.net/yiyuan/archive/2005/10/16/504747.aspxhttp://search.btchina.net/search.php?query=yiyuan&type=1 阅读全文

posted @ 2005-12-28 23:22 cy163 阅读(1153) 评论(1) 推荐(0)

习语

摘要: 1. Thanks a bunch. That works and in fact now that you explained it, its starting to come back to me. 2. I have tripple checked 3. have one slight problem left though 阅读全文

posted @ 2005-12-28 23:01 cy163 阅读(239) 评论(0) 推荐(0)

如何修改Window系统下PATH路径

摘要: 原因是因为“环境变量”的问题,原本的Path=C:\WINDOWS\system32;C:\WINDOWS;……,其中再加一个“E:\JBuilder2005\jdk1.4\bin;”即可,方法如下:cmd——set path (查看你的path变量)——set path=E:\JBuilder2005\jdk1.4\bin;%path%,即可修改path。或者在系统属性——高级——环境变量。再试... 阅读全文

posted @ 2005-12-28 22:12 cy163 阅读(10144) 评论(0) 推荐(0)

2005年12月22日

Problem in calling C++ dll from C# Code

摘要: Hi!I am calling a C++ dll function from my C# code . but facing the problem in a function called inside that C++ function.That's how I'm referring to the C++ dll function inside my C# class : Code: c... 阅读全文

posted @ 2005-12-22 23:59 cy163 阅读(638) 评论(0) 推荐(0)

How to create a DLL library in C and then use it with C#

摘要: http://www.codeproject.com/csharp/UseCDLLlibinCS.asp Introduction After spending some time trying to implement this simple task, I started to search similar code examples over the Internet. I was real... 阅读全文

posted @ 2005-12-22 00:14 cy163 阅读(604) 评论(0) 推荐(0)

C#调用DLL文件时参数对应表

摘要: http://www.njpro.cn/8918/ShowPost.aspx Wtypes.h 中的非托管类型 非托管 C 语言类型 托管类名 说明 HANDLE void* System.IntPtr 32 位 BYTE unsigned char System.Byte 8 位 SHORT short System.Int16 16 位 WORD unsigned short S... 阅读全文

posted @ 2005-12-22 00:06 cy163 阅读(698) 评论(0) 推荐(0)

如何在C#中加载自己编写的动态链接库(DLL)

摘要: 如何在C#中加载自己编写的动态链接库(DLL) 作者:李伟华 来源:csdn 摘要 本文主要讲述如何在C#中逐步实现加载自己用C++语言编写的动态链接库,以及在导入时如何进行C#和C++语言的数据类型匹配 关键词 C# C++ 动态链接库 加载 数据类型匹配 一、发生的背景 在开发新项目中使用了新的语言开发C#和新的技术方案WEB S... 阅读全文

posted @ 2005-12-22 00:01 cy163 阅读(852) 评论(0) 推荐(0)

2005年12月21日

Dynamic load of a c++ dll in C#?http://www.codecomments.com/archive290-2004-7-216328.html

摘要: http://www.codecomments.com/archive290-2004-7-216328.htmlAuthor Dynamic load of a c++ dll in C#? http://www.codecomments.com/archive290-2004-7-216328.html lallous 2004-06-16, 8:57 am ... 阅读全文

posted @ 2005-12-21 23:55 cy163 阅读(1155) 评论(0) 推荐(0)

C-Sharp调用标准动态库

摘要: http://www.28600.com/article2/12-47434.htm这里讲述的是C#调用标准动态库的问题, 在我以前的文件中讲到过, C#调用Win32API, 原理是一样的. 这里我详细讲解用C写一个标准的动态库, 然后让C#调用. (本篇适合初学者, 中间没有任何冗余代码, 简洁明了) 软件环境: VC6.0(当然其他版本的VC5也可以) 1.制作标准动态库 __... 阅读全文

posted @ 2005-12-21 23:38 cy163 阅读(751) 评论(0) 推荐(0)

上一页 1 ··· 93 94 95 96 97 98 99 100 101 ··· 107 下一页

导航