摘要:
当忘记sa用户密码时,可采用如下步骤来处理该问题。 1、启动SQL Server Management Studio,以Windows身份验证方式登录。 2、新建查询,使用该语句修改sa用户的密码:alter login sa with password='new password' Ok... 阅读全文
摘要:
ArcGIS 10版本中,在图层属性对话框中对图层进行渲染,选择渲染色系时,弹出的色带有重复。以下是针对该问题的处理建议。1. A. Close all ArcGIS applications and rename the ESRI folder under C:\Users\YourUserPro... 阅读全文
摘要:
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对于传递引用类型也... 阅读全文