Microsoft.Zing.Application.ComplexArray.this C# (CSharp) Méthode

this() public méthode

public this ( int index ) : Microsoft.Zing.Pointer
index int
Résultat Microsoft.Zing.Pointer
            public Z.Pointer this[int index]
            {
				get 
				{ 
					Z.Pointer t = array[index];
					return t;  
				}
				set 
				{ 
					SetDirty(); 
					array[index] = value; 
				}                
			}