Canguro.Controller.Grid.GridViewSingleArrayCell.GetValue C# (CSharp) 메소드

GetValue() 보호된 메소드

protected GetValue ( int rowIndex ) : object
rowIndex int
리턴 object
        protected override object GetValue(int rowIndex)
        {
            object value = base.GetValue(rowIndex);

            if (value != null)
            {
                string tmp = "";
                System.Collections.IList theList = (System.Collections.IList)value;
                foreach (object o in theList)
                {
                    tmp += o + ", ";
                }
                return tmp.Substring(0, tmp.Length - 2);
            }
            return "";
        }
GridViewSingleArrayCell