类类似数组一样输出

类类似数组一样输出:

private string this[int index] 
    

        
get 
        

            
return m_Names[index]; 
        }
 

        
set 
        

            m_Names[index] 
= value; 
        }
 
    }

原文地址:https://www.cnblogs.com/henw/p/2130530.html