?? iteminfo.cs
字號:
using System;
using System.Collections.Generic;
using System.Text;
namespace FPTree
{
/// <summary>
/// 事務中的頻繁項的描述類
/// </summary>
public class ItemInfo
{
public ItemInfo(string _itemName, int _index)
{
this._itemName = _itemName;
this._index = _index;
}
private int _index = 0;
/// <summary>
/// 事務的位置
/// </summary>
public int Index
{
get { return _index; }
set { _index = value; }
}
private string _itemName;
/// <summary>
/// 事務名稱
/// </summary>
public string ItemName
{
get { return _itemName; }
set { _itemName = value; }
}
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -