コード例 #1
0
        private List<string> getTypeList(IDBBackedControl control)
        {
            List<string> fieldNameList = new List<string>();
            foreach (DBField currField in DBField.GetFieldList(control.Table)) {
                fieldNameList.Add(currField.Name);
            }

            return fieldNameList;
        }
コード例 #2
0
        private List <string> getTypeList(IDBBackedControl control)
        {
            List <string> fieldNameList = new List <string>();

            foreach (DBField currField in DBField.GetFieldList(control.Table))
            {
                fieldNameList.Add(currField.Name);
            }

            return(fieldNameList);
        }