摘要:
我们知道参数类型可以是整型、字符型、对象类型等等,当然也可以是函数。整型用int修饰,字符型用string修饰,等等。那么参数为函数,用什么修饰?就是“委托”。因此,可以把委托理解为函数的类型。using System;using System.Collections.Generic;using S... 阅读全文
摘要:
执行powershell脚本有两种方式:1、通过命令行参数启动脚本C:\Windows\System32\WindowsPowerShell\v1.0\powershell.exe -version 2.0 -noexit -command ". 'C:\Users\Administrator\De... 阅读全文