博客
关于我
强烈建议你试试无所不能的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

你可能感兴趣的文章
2-5
查看>>
牛客多校3 A-PACM Team(状压降维+路径背包)
查看>>
HDU - 4284 Travel(floyd+状压dp)
查看>>
1027 制作表格
查看>>
Android之Socket通信、List加载更多、Spinner下拉列表
查看>>
面向对象的介绍与特性
查看>>
typing-python用于类型注解的库
查看>>
20189215 2018-2019-2 《密码与安全新技术专题》第13周作业
查看>>
第四周作业
查看>>
一、HTML基础
查看>>
蓝牙进阶之路 (002) - HC-05与HC-06的AT指令的区别(转)
查看>>
mysql的limit经典用法及优化
查看>>
C#后台程序与HTML页面中JS方法互调
查看>>
mysql 同一个表中 字段a 的值赋值到字段b
查看>>
linux系统可执行文件添加环境变量使其跨终端和目录执行
查看>>
antiSMASH数据库:微生物次生代谢物合成基因组簇查询和预测
查看>>
UNICODE与ANSI的区别
查看>>
nginx 配置实例
查看>>
Flutter - 创建底部导航栏
查看>>
ASP.NET MVC 教程-MVC简介
查看>>