⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 bug.cs

📁 WWF中的基本活动的简单示例,例如IfElseActivity、WhileActivity活动
💻 CS
字号:
using System;
using System.Collections.Generic;
using System.Text;

namespace WorkflowConsoleApplication1
{
    //Bug的定义
    [Serializable]
    public class Bug
    {

        public Bug(int id, string title, string description)
        {

            _id = id;

            _title = title;

            _description = description;

        }

        public Bug()
        {

        }

        private int _id;

        public int ID
        {

            get { return _id; }

            set { _id = value; }

        }

        private string _title;

        public string Title
        {

            get { return _title; }

            set { _title = value; }

        }



        private string _description;

        public string Description
        {

            get { return _description; }

            set { _description = value; }

        }

    }

}

⌨️ 快捷键说明

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