• c#中幾個常用代碼


    文件操作

    string path = @"e:\MyTest.txt";
     DateTime dt 
    = DateTime.Now;
                    
    if (!File.Exists(path)) 
                    
    {
                        
    // Create a file to write to.
                        using (StreamWriter sw = File.CreateText(path)) 
                        
    {
                            sw.WriteLine(
    "time"+dt.ToString());
                            sw.WriteLine(hashtable.Count.ToString());
                        }
        
                    }

                    
    else
                    
    {
                        
    using (StreamWriter sw = File.AppendText(path)) 
                        
    {
                            sw.WriteLine(
    "time"+dt.ToString());
                            sw.WriteLine(hashtable.Count.ToString());
                        }

                    }


    web應用中的Cache操作
    Cache cache = System.Web.HttpContext.Current.Cache;
    string obj=null;
    cache.Insert(
    "cache1",obj,null,DateTime.Now.AddHours(1),TimeSpan.Zero,CacheItemPriority.AboveNormal,null);
    當然對於簡單的字符串,使用以下方式即可
    Application["Title"= "Test Sample";

    cache操作可以放在任何地方,當然放在Global.asax的Application_Start(Object sender, EventArgs e)中最好.
  • 相关阅读:
    移动端页面适配———多方案解析
    折叠面板实现,上传文件进度条,三级联选择器,多级联选择器, 利用layui实现
    php二维数组去重
    php抽奖算法
    JS如何判断json是否为空
    MySQL中GROUP_CONCAT()函数
    ubuntu卸载安装mysql
    ubuntu安装phalcon
    Ubuntu 16.04 设置MySQL远程访问权限
    首次ubuntu给root设置密码
  • 原文地址:https://www.cnblogs.com/oisiv/p/407256.html
Copyright © 2020-2023  润新知