C# 积木模块 ABC(一)(转自新一代技术网)
2024-07-21 02:22:09
供稿:网友
网站运营seo文章大全提供全面的站长运营经验及seo技术!第一个c#程序:经典例程hello world
“hello world”可以说是学习每一种编程语言的第一个例程了。我们可以在notepad、wordpad等任何编辑器中输入以下的c#代码,并保存为helloworld.cs,最后在命令行中执行csc helloworld.cs来运行文件:
// using system
using system;
class hello
{
static void main() { // display output on console
console.writeline("hello,c# world!");
}
}
用openfiledialog类浏览或打开文件
同vc++中cfiledialog的 open 方法相同,c#中的openfiledialog类可用于打开一个文件。这个类是从filedialog派生出来的。用这个类中的 openfile方法打开一个文件,然后就可以通过流(steam)来读取这个文件。
请看下面的例程代码,它使用 openfiledialog类浏览一个文件:
openfiledialog fdlg = new openfiledialog();
fdlg.title = "c# corner open file dialog" ;
fdlg.initialdirectory = @"c:/" ;
fdlg.filter = "all files (*.*)|*.*|all files (*.*)|*.*" ;
fdlg.filterindex = 2 ;
fdlg.restoredirectory = true ;
if(fdlg.showdialog() == dialogresult.ok)
{
textbox1.text = fdlg.filename ;
}
title一行设置打开对话框的标题,filter一行为打开的文件类型设置一个过滤器,filename一行包含了所选中的文件名。
下图就是运行的结果:
从c#中调用com组件
.net框架是com的一个自然发展,两者共享许多核心要素,这包括组件的再利用以及语言的中立性。为了向后兼容,com interop可以使用现存的com组件而不要求对原始组件进行修改。当一个 .net 框架开发人员想将com代码合并到一个管理应用程序中时,就可以用com interop功能引入相关的com类型。引入之后,这个com类型就可以使用了。这属于前期连接。但是有时候你需要对象的后期连接,这在.net中也能实现,使用名称空间映射就可以通过后期连接来调用com对象。
这里介绍一个应用程序例程,它将调用excel,并且通过使用后期连接使它可视。
后期连接将使用reflectionb的type类,这个type类有许多方法可以取得com对象,就象我们已经使用过的 gettypefromprogid("application"),这个方法从系统注册表中得到com id,然后使用static类的成员 activator.createinstance()创建这个com对象的一个新例示。
要想调用com对象的方法、函数和属性,就必须使用包含正确设置的type对象的invokemethod()方法。这个方法接受一些参数变量,其中最重要的一个是方法类型的ex属性(get或set)。在例子中我们为excel.visible使用了set属性,从而使excel应用程序可视。
我们将尝试在.net环境中调用excel应用程序。这是一个后期连接应用程序,因为如果是前期连接的话你就需要使用com对象的rcw(runtime callable wraper:运行时间的可调用包)来完成下面的命令行程序tblimp所完成的任务:
ex. c:/> tblimp /out:
下载comindotnet.zip,这是一个控制台应用程序。下面是调用excel的代码:
//variable
type excel;
object[] parameter= new object[1];
object excelobject;
try
{
//get the excel object
excel = type.gettypefromprogid("excel.application");
//create instance of excel
excelobject = activator.createinstance(excel);
//set the parameter whic u want to set
parameter[0] = true;
//set the visible property
excel.invokemember("visible", bindingflags.setproperty, null, excelobject, parameter);
}
catch(exception e)
{
console.writeline("error stack {0} ", e.message) ;
}
finally
{
//when this object is destroyed the excel application will be closed
//so sleep for sometime and see the excel application
thread.sleep(5000);
//relaese the object
//gc.runfinalizers()
}
创建多线程应用程序
在.net和c#中编写一个多线程应用程序将非常得容易。即使对于那些从没有用c#编写过多线程应用程序的初学者,只需遵循以下这些简单的步骤就可以实现目的。
定义名称空间
在.net中,多线程功能是在system.threading名称空间中定义的。因此,在使用任何线程类之前,必须定义 system.threading名称空间。定义方法如下:
using system.threading;
启动线程
system.threading名称空间中的thread类代表一个线程对象,用这个类对象可以创建新的线程,删除、暂停和恢复线程。 下面的代码使用thread类创建一个新的线程,然后启动这个线程:
thread = new thread(new threadstart( writedata ));
thread.start();
其中writedata是这个线程要执行的一个函数,代码如下:
protected void writedata()
{
string str ;
for ( int i = 0; i<=10000; i++ )
{
str = "secondary thread" + i.tostring();
console.writeline(listview1.listitems.count, str, 0, new string[]{""} );
update();
}
}
杀死线程
thread类的abort方法用于永久地杀死一个线程。但是请注意,在调用abort方法前一定要判断线程是否还激活,也就是判断thread.isalive的值:
if ( thread.isalive )
{
thread.abort();
}
暂停线程
thread.sleep方法用于将一个线程暂停一段时间,代码如下:
thread.sleep();
设置线程的优先权
我们可以使用thread类的threadpriority属性设置线程的优先权。线程优先权的取值范围是normal、abovenormal、belownormal、highest或者lowest。请看下面的设置代码:
thread.priority = threadpriority.highest;
延迟线程
thread类的suspend方法可以延迟一个线程。线程被延迟到调用resume方法为止。
if (thread.threadstate = threadstate.running )
{
thread.suspend();
}
恢复被延迟的线程
调用resume方法可以恢复一个被延迟的线程。如果线程没有被延迟,resume方法就是无效的。
if (thread.threadstate = threadstate.suspended )
{
thread.resume();
}