1234567891011121314151617181920 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- using System.Diagnostics;
- namespace WechatDoubleOpen
- {
- class Program
- {
- static void Main(string[] args)
- {
- string WechatPath = ReadWeChatPathClass.ReadWeChatPath();
- //打开两个微信
- Process.Start(WechatPath);
- Process.Start(WechatPath);
- }
- }
- }
|