CClash.CacheInfo.WriteStat C# (CSharp) Method

WriteStat() public method

public WriteStat ( string statfile, long value ) : void
statfile string
value long
return void
        public void WriteStat(string statfile, long value)
        {
            cache.EnsureKey(K_Stats);
            System.IO.File.WriteAllText(cache.MakePath(K_Stats, statfile), value.ToString());
        }