zoukankan      html  css  js  c++  java
  • C#中实例一个自定义类的数组的做法

    /类
    public class BarChartValue
    {
        public BarChartValue()
        {

        }
        public BarChartValue(string MyName, int Myvalue)
        {
            Name = MyName;
            MValue = Myvalue;
        }
        private string name;
        public string Name
        {
            get
            {
                return name;
            }
            set
            {
                name = value;
            }
        }

        private int mvalue;
        public int MValue
        {
            get
            {
                return mvalue;
            }
            set
            {
                mvalue = value;
            }
        }
    }

    1.
            BarChartValue[] BarChartValue ={
            new BarChartValue("第一个仓库",1),
            new BarChartValue("第一个仓库",2)
            };
    2.

            BarChartValue[] BarChartValue= new BarChartValue[2];
            BarChartValue[0] = new mytest();
            BarChartValue[0].Name = "";
            BarChartValue[1] = new mytest();
            BarChartValue[1].Name = "";
    3.
            for (int i = 0; i < 5; i++)
            {
                BarChartValue[i] = new BarChartValue();
                BarChartValue[i].Name = "";
            }

    用法:
    用方法 :
    Render("BarChartValue);
    方法:
    public string Render(PieChartValue[] Mydata)

  • 相关阅读:
    暑假第二周总结
    7.18-7.24 第一周周报
    poj 3295 Tautology
    2016多校 #2 1006 Fantasia
    codeforces 698B Fix a Tree
    codeforces 699B Bomb
    HDU 4578(线段树
    CF 600F( 二分图
    hdu 5517 Triple(二维树状数组)
    HDU HDOJ5412(树套树or整体二分
  • 原文地址:https://www.cnblogs.com/cuihongyu3503319/p/759687.html
Copyright © 2011-2022 走看看