myevent.cs

来自「事务提醒软件。自己写的事务提醒软件」· CS 代码 · 共 28 行

CS
28
字号
using System;
using System.Collections.Generic;
using System.Text;

namespace MyNote
{
    public class MyEvent
    {
        //
        //public
        //
        public int mIndex;
        public string mContent;
        public DateTime mDatetime;
        public bool mState;
        //
        //method
        //
        public MyEvent(int Index,string Content,DateTime Datetime,bool State)
        {
            mIndex = Index;
            mContent = Content;
            mDatetime = Datetime;
            mState = State;
        }
    }
}

⌨️ 快捷键说明

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