• 大小: 0.02M
    文件类型: .cs
    金币: 1
    下载: 0 次
    发布日期: 2020-12-26
  • 语言: C#
  • 标签: C#  dos  

资源简介

c# dos命令常用操作 类源码下载

资源截图

代码片段和文件信息

//类名:EcanDOS
//作用:DOS常用命令操作
//作者:刘典武
//时间:2010-12-01

using System;
using System.Collections.Generic;
using System.Text;
using System.IO;
using System.Diagnostics;
using System.Runtime.InteropServices;

namespace Ecan
{
    public class EcanDOS
    {
        //引入API函数
        [DllImportAttribute(“user32.dll“)]
        private static extern int FindWindow(string ClassName string WindowName);
        [DllImport(“user32.dll“)]
        private static extern int ShowWindow(int handle int cmdShow);
        [DllImport(“winmm.dll“ EntryPoint = “mciSendString“ CharSet = CharSet.Auto)]
        private static extern int mciSendString(string lpstrCommand string lpstrReturnstring int uReturnLength int hwndCallback);

        private const int SW_HIDE = 0;//API参数表示隐藏窗口
  

评论

共有 条评论