commanditem.cs

来自「微软的行业应用解决方案示例」· CS 代码 · 共 50 行

CS
50
字号
using System;
using System.Linq;
using System.Collections.Generic;
using System.Text;
using System.Data.Common;


namespace Microsoft.Mobile.Data
{
    /// <summary>
    /// Used to cache commands
    /// </summary>
    internal class CommandItem
    {
        #region Constructor(s) & Dispose
        #endregion


        #region Properties
        /// <summary>
        /// 
        /// </summary>
        public DbCommand Command
        {
            get;
            set;
        }


        /// <summary>
        /// 
        /// </summary>
        public int Count
        {
            get;
            set;
        }
        #endregion


        #region Methods
        public void UsedCommand()
        {
            Count++;
        }
        #endregion
    }

}

⌨️ 快捷键说明

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