value.cs

来自「这是一个图书馆管理用的简化系统」· CS 代码 · 共 57 行

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

namespace BMS
{
    class Value
    {
        public static string bookid;

        public static string Bookid
        {
            get { return Value.bookid; }
            set { Value.bookid = value; }
        }

        public  static string readerid;

        public static string Readerid
        {
            get { return Value.readerid; }
            set { Value.readerid = value; }
        }
        public static string borrowreturn;

        public static string Borrowreturn
        {
            get { return Value.borrowreturn; }
            set { Value.borrowreturn = value; }
        }
        private static string mainform;

        public static string Mainform
        {
            get { return Value.mainform; }
            set { Value.mainform = value; }
        }

       public static string CurrentLoger;

        public static string CurrentLoger1
        {
            get { return Value.CurrentLoger; }
            set { Value.CurrentLoger = value; }
        }
        public  static string tablename;

        public static string Tablename
        {
            get { return Value.tablename; }
            set { Value.tablename = value; }
        }

        
    }
}

⌨️ 快捷键说明

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