博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
由错误的方法中得到的
阅读量:5362 次
发布时间:2019-06-15

本文共 1051 字,大约阅读时间需要 3 分钟。

- -!今天做了件糊涂事,居然忘记用sp来直接cross表格来取值。不过由此也得到一个方法:

None.gif
        
private
 
struct
 SLocation
ExpandedBlockStart.gifContractedBlock.gif        
dot.gif
InBlock.gif            
public string  name; 
InBlock.gif            
public int ID; 
ExpandedBlockEnd.gif        }
 
None.gif        
None.gif        
private
 ArrayList GetLocationArrayList()
ExpandedBlockStart.gifContractedBlock.gif        
dot.gif
{
InBlock.gif            
if (this._dsLocation.Tables.Count<=0)
ExpandedSubBlockStart.gifContractedSubBlock.gif            
dot.gif{
InBlock.gif                
this._dsLocation = this._loc.GetLocationList();
ExpandedSubBlockEnd.gif            }
InBlock.gif            DataTable _dt   
= this._dsLocation.Tables[0];
InBlock.gif            ArrayList _al   
= new ArrayList();
InBlock.gif            SLocation _stcloc 
= new SLocation();
InBlock.gif            
foreach (DataRow _dr in _dt.Rows)
ExpandedSubBlockStart.gifContractedSubBlock.gif            
dot.gif{
InBlock.gif                _stcloc.ID   
= Convert.ToInt32(_dr["LOCATION_ID"]);
InBlock.gif                _stcloc.name 
= _dr["LOCATION_NAME"].ToString();
InBlock.gif                _al.Add(_stcloc);
ExpandedSubBlockEnd.gif            }
InBlock.gif            
return _al;
ExpandedBlockEnd.gif        }
None.gif
None.gif        
private
 String GetLocationNameByID(
int
 ID)
ExpandedBlockStart.gifContractedBlock.gif        
dot.gif
{
InBlock.gif            
if (this._alLocation.Count<=0)
ExpandedSubBlockStart.gifContractedSubBlock.gif            
dot.gif{
InBlock.gif                
this._alLocation  = this.GetLocationArrayList();
ExpandedSubBlockEnd.gif            }
InBlock.gif            IEnumerator _emun   
= _alLocation.GetEnumerator();
InBlock.gif            SLocation _stcloc   
= new SLocation();
InBlock.gif            String _locName     
= string.Empty;
InBlock.gif            
for (int i=0;i<_alLocation.Count-1;i++)
ExpandedSubBlockStart.gifContractedSubBlock.gif            
dot.gif{
InBlock.gif                _emun.MoveNext();
InBlock.gif                _stcloc 
= (SLocation)_emun.Current;
InBlock.gif                
if (_stcloc.ID  == ID)
ExpandedSubBlockStart.gifContractedSubBlock.gif                
dot.gif{
InBlock.gif                    _locName    
= _stcloc.name;
InBlock.gif                    
break;
ExpandedSubBlockEnd.gif                }
ExpandedSubBlockEnd.gif            }
InBlock.gif            
return _locName;
ExpandedBlockEnd.gif        }

 

先声明一个结构,再将结构做为object放入arraylist.

over

转载于:https://www.cnblogs.com/syveen/archive/2005/07/09/189271.html

你可能感兴趣的文章
职场上一个人情商高的十种表现
查看>>
【底层原理】深入理解Cache (下)
查看>>
Elasticsearch安装中文分词插件IK
查看>>
进阶4:常见函数-单行函数
查看>>
简述企业信息化与企业架构关系
查看>>
npoi List 泛型导出
查看>>
第七章笔记
查看>>
“滑机约拍”--第一阶段冲刺
查看>>
任务管理器隐藏一个进程
查看>>
MySQL死锁查询【原创】
查看>>
二维傅里叶变换的应用-相位相关
查看>>
元类type
查看>>
Linux网络协议栈(四)——链路层(1)
查看>>
Python运行机制
查看>>
Android应用性能优化之使用SparseArray替代HashMap
查看>>
sed.md
查看>>
MyEclipse启动一直停留在Loading workbench界面上的处理
查看>>
Html2
查看>>
【详解】嵌入式开发中固件的烧录方式
查看>>
FPGA静态时序分析——IO口时序(Input Delay /output Delay)
查看>>