这是《ASP.NET编程实作教程》一书中的源文件 如果有此书的朋友不防下载过来参考

源代码在线查看: indexertest.cs

软件大小: 202 K
上传用户: LANCEZHANGL
关键词: ASP NET 编程 教程
下载地址: 免注册下载 普通下载 VIP

相关代码

				using System;
				class myIndex 
				{ 
					string[] myArray={"java","C++","C#"};
					public  myIndex()
					{
						
					}
					
					public string this[int index]
					{ 
				 		get 
				 		 { 
							 return myArray[index]; 
				 		 }
				 		 
				 	} 
				
					
				}
				
				class indexerTest 
				 { 
				 	public static void Main() 
				 	{ 
				  		myIndex index1=new myIndex();
				  		for(int i=0;i				  		{
				  			Console.WriteLine(index1[i]);
				  		}
				  		
				  		
				 	} 
				}			

相关资源