VC#里面的东西,大家可以看看
源代码在线查看: singlespooler.cs
using System;
namespace singleSpooler
{
///
/// Summary description for Class1.
///
public class singleSpooler {
static void Main(string[] args) {
Spooler pr1, pr2;
//open one printer--this should always work
Console.WriteLine ("Opening one spooler");
try {
pr1 = new Spooler();
}
catch (SingletonException e) {
Console.WriteLine (e.Message);
}
//try to open another printer --should fail
Console.WriteLine ("Opening two spoolers");
try{
pr2 = new Spooler();
}
catch (SingletonException e) {
Console.WriteLine (e.Message);
}
}
}
}
|
相关资源 |
|
-
VC#里面的东西,大家可以看看
-
小型学生管理系统!做的很不错的一个东西!
大家可以看看!不好的地方请指点
-
实现在VC中调用CHM文件,是一个不错的例子,大家可以看看
-
射频技术在自动设备识别技术中的应用,是个很好的文章,大家可以看看,推荐!
-
网络的知识
大家可以看看复习一下
-
虚拟仪器在电子竞赛测试中的应用,大家可以看看!
-
我自己编的一个,大家可以看看,我们可以讨论一下
-
数据结构,很有用的哟.大家可以看看.是清华大学出版的,学了一定管用其所长
|