intlog.cs

来自「最好用的站点内容管理系统 全部源代码都有」· CS 代码 · 共 19 行

CS
19
字号
using System;
using System.Reflection;

namespace NetCMS.DALFactory
{
    public interface INTLog
    {
        int Add(int IsManager,string Title,string Content,string IP,string UserNum,string SiteID);
    }
    public sealed partial class DataAccess
    {
        public static INTLog CreateNTLog()
        {
            string className = path + ".NTLog";
            return (INTLog)Assembly.Load(path).CreateInstance(className);
        }
    }
}

⌨️ 快捷键说明

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