摘要: 只需要输入两行代码: sudo apt-get autoremove open-vm-tools sudo apt-get install open-vm-tools-desktop 在安装期间遇见yes直接输入yes即可,其他情况均回车。 阅读全文
posted @ 2021-12-23 17:48 wzwyc 阅读(1365) 评论(0) 推荐(0)
摘要: 主要利用反射和动态编译。 示例代码: using Microsoft.CSharp; using System; using System.CodeDom.Compiler; using System.Reflection; namespace ConsoleApp6 { internal clas 阅读全文
posted @ 2021-12-23 16:35 wzwyc 阅读(1157) 评论(0) 推荐(0)
摘要: 开发过程中,有时候我们需要拼接网址,传递参数,可以自己去组字符串,也可以利用.NET平台提供的接口进行拼接。 需要添加System.Web库的引用。 示例代码: using System; using System.Collections.Specialized; using System.Web; 阅读全文
posted @ 2021-12-23 16:09 wzwyc 阅读(698) 评论(0) 推荐(0)