⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 ini.cs

📁 Csharp编写的关于智能手机(smartphone)闹钟程序
💻 CS
字号:
using System;
using System.IO; 
using System.Runtime.InteropServices;  
using System.Text; 

namespace MyClock
{
	/// <summary>
	/// Ini 的摘要说明。
	/// </summary>
	public class Ini
	{

		public string path;     //INI文件名  
		
		
		public Ini(string INIPath)
		{
			//
			// TODO: 在此处添加构造函数逻辑
            //
			path = INIPath; 

		}




		[DllImport("kernel32")]  

		private static extern long WritePrivateProfileString(string   
			section,string key,string val,string filePath);  

		[DllImport("kernel32")]  

		private static extern int GetPrivateProfileString(string section,string key, string def,StringBuilder retVal,int size,string filePath);  

		//声明读写INI文件的API函数       




		public void IniWriteValue(string Section,string Key,string Value)  

		{  

			WritePrivateProfileString(Section,Key,Value,this.path);  

		}  

		//写INI文件           

		public string IniReadValue(string Section,string Key)  

		{  

			StringBuilder temp = new StringBuilder(255);  

			int i = GetPrivateProfileString(Section,Key,"",temp,255,this.path);  

			return temp.ToString();  

		}  

		//读取INI文件指定  
	}
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -