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

资源简介

由于wince中不支持读取ini的函数,自己编写的读取的类

资源截图

代码片段和文件信息

using System;
using System.Linq;
using System.Collections.Generic;
using System.Text;
using System.IO;

namespace PDATestCSharp
{
    class IniOperator
    {
        /************************************************************************/
        /*写操作
         * strSection   节
         * strKey       键
         * strValue     需要写入的值
         * strFilePath  配置文件的全路径(wince中只能使用绝对全路径)
         */
        /************************************************************************/

        public static void PutINI(string strSection string strKey string strValue string strFilePath)
        {
            INICommon(false strSection strKey strValue strFilePath);
        }
        /************************************************************************/
        /* 读操作
         * strSectio

评论

共有 条评论