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

你可能感兴趣的文章
C#中Monitor和Lock以及区别
查看>>
【NOIP2017】奶酪
查看>>
$ 一步一步学Matlab(3)——Matlab中的数据类型
查看>>
5.6.3.7 localeCompare() 方法
查看>>
Linux下好用的简单实用命令
查看>>
描绘应用程序级的信息
查看>>
php环境搭建脚本
查看>>
FTP主动模式与被动模式说明
查看>>
php 编译常见错误
查看>>
MES架构
查看>>
高性能JavaScript-JS脚本加载与执行对性能的影响
查看>>
关于标签之间因为换行等问题造成的空白间距问题处理
查看>>
hdu 2767(tarjan)
查看>>
sklearn之分类模型混淆矩阵和分类报告
查看>>
MySQL各存储引擎
查看>>
项目--简单导出CSV文件
查看>>
Oracle session相关数据字典(一)
查看>>
织梦文章内容提取第一张或者多张图片输出
查看>>
C#用正则表达式 获取网页源代码标签的属性或值
查看>>
BZOJ 3399 [Usaco2009 Mar]Sand Castle城堡(贪心)
查看>>