九色国产,午夜在线视频,新黄色网址,九九色综合,天天做夜夜做久久做狠狠,天天躁夜夜躁狠狠躁2021a,久久不卡一区二区三区

打開APP
userphoto
未登錄

開通VIP,暢享免費(fèi)電子書等14項(xiàng)超值服

開通VIP
C# 操作INI文件
  //寫INI文件
  [ DllImport ( "kernel32" ) ]
  private static extern bool WritePrivateProfileString ( string section ,string key , string val , string filePath ) ;
  //讀ini文件(字符
  [ DllImport ( "kernel32" ) ]
private static extern int GetPrivateProfileString ( string section,string key , string def , StringBuilder retVal ,int size , stringfilePath ) ;
  
  //讀ini文件(數(shù)字
  [ DllImport ( "kernel32" ) ]
  private static extern int GetPrivateProfileInt ( string section ,string key , int def , string filePath ) ;
  
  //////////////////////////////////////////////////////////////
  using System;
  using System.IO;
  using System.Runtime.InteropServices;
  using System.Text;
  
  namespace EchonComponentLibrary
  {
  ///
  /// IniFile 的摘要說明。
  ///

  public class IniFile
  {
  private string FFileName;
  
  [DllImport("kernel32")]
  private static extern int GetPrivateProfileInt(
  string lpAppName,
  string lpKeyName,
  int nDefault,
  string lpFileName
  );
  [DllImport("kernel32")]
  private static extern int GetPrivateProfileString(
  string lpAppName,
  string lpKeyName,
  string lpDefault,
  StringBuilder lpReturnedString,
  int nSize,
  string lpFileName
  );
  [DllImport("kernel32")]
  private static extern bool WritePrivateProfileString(
  string lpAppName,
  string lpKeyName,
  string lpString,
  string lpFileName
  );
  
  public IniFile(string filename)
  {
  FFileName = filename;
  }
  public int ReadInt(string section,string key,int def)
  {
  return GetPrivateProfileInt(section,key,def,FFileName);
  }
  public string ReadString(string section,string key,string def)
  {
  StringBuilder temp = new StringBuilder(1024);
  GetPrivateProfileString(section,key,def,temp,1024,FFileName);
  return temp.ToString();
  }
  public void WriteInt(string section,string key,int iVal)
  {
  WritePrivateProfileString(section,key,iVal.ToString(),FFileName);
  }
  public void WriteString(string section,string key,string strVal)
  {
  WritePrivateProfileString(section,key,strVal,FFileName);
  }
  public void DelKey(string section,string key)
  {
  WritePrivateProfileString(section,key,null,FFileName);
  }
  public void DelSection(string section)
  {
  WritePrivateProfileString(section,null,null,FFileName);
  }
  
  }
  }

本站僅提供存儲(chǔ)服務(wù),所有內(nèi)容均由用戶發(fā)布,如發(fā)現(xiàn)有害或侵權(quán)內(nèi)容,請(qǐng)點(diǎn)擊舉報(bào)。
打開APP,閱讀全文并永久保存 查看更多類似文章
猜你喜歡
類似文章
使用C#讀寫ini配置文件-程序開發(fā)-紅黑聯(lián)盟
C# 讀寫Ini文件
C# IniFile用法
C#讀寫int配置文件
C#操作INI文件(調(diào)用WindowsAPI函數(shù)WritePrivateProfileString,GetPrivateProfileString)
讀寫ini文件
更多類似文章 >>
生活服務(wù)
熱點(diǎn)新聞
分享 收藏 導(dǎo)長(zhǎng)圖 關(guān)注 下載文章
綁定賬號(hào)成功
后續(xù)可登錄賬號(hào)暢享VIP特權(quán)!
如果VIP功能使用有故障,
可點(diǎn)擊這里聯(lián)系客服!

聯(lián)系客服