摘要:
图网集:http://t.cn/hDiEur豆瓣小组:http://t.cn/aoxisP街景酷:http://t.cn/hbIxkN月光博客:http://t.cn/habLn上帝之眼:http://t.cn/aoS1Ol城市吧360景:http://t.cn/htvKRE都市:http://t.cn/aoS9Am谷歌地图:http://t.cn/hcMam微软雅虎Flash地球:http://t.cn/hOygA网页地球:http://t.cn/aoa9FU谷歌地球:http://t.cn/h47oiu地理数据下载http://geocommons.com/ 阅读全文
摘要:
ref ref 关键字使得参数按引用传递,通俗点讲就是传递参数的地址,因此在方法中对参数所做的任何更改都反映在该变量中。值得注意的是传递到 ref 参数的参数必须先进行初始化。class RefExample{ static void Method(ref int i) { i = 44; } static void Main() { int val = 0; Method(ref val); // val is now 44 }} 按引用传递值类型(如上所示)是有用的,但是ref对于传递引用类型也... 阅读全文