摘要:
1. Dos 设置剪切板内容 echo helloworld |clip powershell: Set-Clipboard "helllo" 2. mstsc C:\Users\bb\Documents\Default.rdp /console /v: 203.23.43.244。 3 想把一个g 阅读全文
随笔档案-2020年05月
C# 之 Ref Out
2020-05-10 06:55 by qgbo, 149 阅读, 收藏, 编辑
摘要:
如下代码: static void Main(string[] args) { Console.WriteLine("Hello World!"); var (a, b, c) = ("a","b","c"); myRef(ref a,out b,c); Console.WriteLine(a+b+ 阅读全文