加入收藏 - 网站地图 - 网站搜索 -
阅读新闻

让ASP.NET简便使用SCRIPT

[日期:09-11] [字体: ]


00259 }

00260 }

00261 private ElementType mElement = ElementType . None ;

00262 ///

00263 /// 获取或设置参数值是否参数名称

00264 ///


00265 public ElementType Element

00266 {

00267 get

00268 {

00269 return mElement ;

00270 }

00271 set

00272 {

00273 mElement = value ;

00274 }

00275 }

00276 }

00277 public class ParameterCollection : System . Collections . CollectionBase

00278 {

00279 public Parameter this [ int index ]

00280 {

00281 get

00282 {

00283 return ( ( Parameter ) List [ index ] );

00284 }

00285 set

00286 {

00287 List [ index ] = value ;

00288 }

00289 }

00290

00291 public int Add ( Parameter value )

00292 {

00293 return ( List . Add ( value ) );

00294 }

00295

00296 public int IndexOf ( Parameter value )

00297 {

00298 return ( List . IndexOf ( value ) );

00299 }

00300

00301 public void Insert ( int index , Parameter value )

00302 {

00303 List . Insert ( index , value );

00304 }

00305

00306 public void Remove ( Parameter value )

00307 {

00308

00309 List . Remove ( value );

00310 }

00311

00312 public bool Contains ( Parameter value )

00313 {

00314 // If value is not of type Int16, this will return false.

00315 return ( List . Contains ( value ) );

00316 }

00317

00318 }

00319 ///



上一页 [1] [2] [3]    
 
评论 】 【 推荐 】 【 打印
上一篇:Flash入门应该了解的重要概念
下一篇:手绘卡通图像实例:苍劲的大树
相关新闻