摘要: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head> <title></title> <script type="text/javascript"> funct 阅读全文
posted @ 2012-11-23 21:48 FiberHomer 阅读(171) 评论(0) 推荐(0) 编辑
摘要: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head> <title></title> <script type="text/javascript"> funct 阅读全文
posted @ 2012-11-23 21:29 FiberHomer 阅读(99) 评论(0) 推荐(0) 编辑
摘要: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head> <title></title> <script type="text/javascript"> funct 阅读全文
posted @ 2012-11-23 21:15 FiberHomer 阅读(111) 评论(0) 推荐(0) 编辑
摘要: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head> <title></title> <script type="text/javascript"> funct 阅读全文
posted @ 2012-11-23 20:46 FiberHomer 阅读(154) 评论(0) 推荐(0) 编辑
摘要: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head> <title></title></head><body><a href="HTMLPageHis2 阅读全文
posted @ 2012-11-23 16:10 FiberHomer 阅读(92) 评论(0) 推荐(0) 编辑
摘要: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head> <title></title> <script type="text/javascript"> funct 阅读全文
posted @ 2012-11-23 15:47 FiberHomer 阅读(132) 评论(0) 推荐(0) 编辑
摘要: using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace refout{ class Program { static void Main(string[] args) { testParams tp = new testParams(); Int32 x = 23; Int32 y = 45; Console.WriteLine("x={0},y={1}",x,y); tp.changeWithoutRef(x,y); Console.WriteL 阅读全文
posted @ 2012-11-23 07:58 FiberHomer 阅读(365) 评论(0) 推荐(0) 编辑
摘要: 将SILVERLIGHT DEVELOPER.EXE文件复制到安装文件对应目录下面(即C:\Program Files\Microsoft Visual Studio 10.0\Common7\IDE文件夹下面)就可以了 阅读全文
posted @ 2012-11-22 12:00 FiberHomer 阅读(183) 评论(0) 推荐(0) 编辑
摘要: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head> <title>1234567</title> <script type="text/javascript"> 阅读全文
posted @ 2012-11-20 19:52 FiberHomer 阅读(341) 评论(1) 推荐(0) 编辑
摘要: Finalize 与 Dispose 之间的区别 收藏 Finalize自动释放资源,Dispose()用于手动释放资源。 一. Finalize Finalize很像C++的析构函数,我们在代码中的实现形式为这与C++的析构函数在形式上完全一样,但它的调用过程却大不相同。~ClassName() {//释放你的非托管资源} 比如类A中实现了Finalize函数,在A的一个对象a被创建时(准确的说应该是构造函数被调用之前),它的指针被插入到一个 finalization链表中;在GC运行时,它将查找finalization链表中的对象指针,如果此时a已经是垃圾对象的话,它会被移入一个 f... 阅读全文
posted @ 2012-11-20 16:20 FiberHomer 阅读(942) 评论(0) 推荐(0) 编辑