DLL的应用

2016-01-29 12:28 6 1 收藏

DLL的应用,DLL的应用。

【 tulaoshi.com - ASP.NET 】


csc /target:library OutPut.cs
csc /reference:OutPut.dll class1.cs
一:
using System;
public class OutPut
{
private string OutPutWord;
public OutPut(string OutWord)
{
OutPutWord=OutWord;
Console.WriteLine(OutPutWord);
}
}
二:
using System;
namespace ConsoleApplication5
{
///
/// Class1 的摘要说明。
///

class Class1
{
///
/// 应用程序的主入口点。
///

[STAThread]
static void Main(string[] args)
{
OutPut h=new OutPut("HelloWorld!");
// TODO: 在此处添加代码以启动应用程序 // } }}

来源:http://www.tulaoshi.com/n/20160129/1486236.html

延伸阅读
  需求 :由于最近接到这样的项目,甲方他们要求我们开发的功能加入他们原先已经存在的一个PB开发的应用程序中。唯一的目的是不想有两个exe应用程序。 方案 :把Delphi的应用程序用dll的形式打包,然后在PB里调用。 设计 :         一、 PB部分      ...
  [原文] That is correct. A BPL is a DLL. (But not all DLLs are BPLs.) But I still found some different, such as that I can create a object from the Host exe and that pass to a BPL and modify it safely, but if I do same to a dll, I can not modify any referenced property of the...
标签: 电脑入门
问:今天开电脑的时侯,一旦启动某个应用程序,总是弹出没有找到comres.dll,因此这个应用程序未能启动。重新安装应用程序可能会修复此问题。 comres.dll是什么?如果出现这样的情况怎么办?comres.dll文件能修复么?网络上面曾经出现过comres.dll病毒,comres.dll和病毒有关联么?请教各位大虾怎样才能解决这个问题呢?我的系统是 Windows XP Pro...
SQL Server Compact是一种In-Process数据库引擎,它由多个DLL文件构成,下面就以SQL Server Compact 3.5为例子简单介绍一下每个DLL文件的作用。 sqlceca35.dll SQL Server Compact的客户端代理,客户端代理与服务端代理进行通信,实现RDA和Merge Replication数据同步。 sqlcecompact35.dll SQL Server Compact数据库修...
标签: ASP
       老外真是聪明,这个方法也想得到,有兴趣的不妨试试,但是如果对方的服务器安全搞的很好的话,这个代码也许就不能用了,但不管怎么样,学习一下也是好的,:)            <% Response.Buffer = True %>   <% Server.ScriptTimeout = 500...

经验教程

903

收藏

98
微博分享 QQ分享 QQ空间 手机页面 收藏网站 回到头部