coperator.cs

来自「实现简单个人数据库系统」· CS 代码 · 共 28 行

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

namespace QueryTool_V1
{
    public class COperator
    {
        public ArrayList numericOperator = null;
        public ArrayList stringOperator = null;
        public COperator()
        {
            // numeric
            numericOperator = new ArrayList();
            numericOperator.Add(" = ");
            numericOperator.Add(" < > ");
            numericOperator.Add(" > ");
            numericOperator.Add(" < ");

            //string
            stringOperator = new ArrayList();
            stringOperator.Add(" Like ");
            stringOperator.Add(" Not Like ");
        }
    }
}

⌨️ 快捷键说明

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