System.Collections.ArrayList.SynchronizedArrayListWrapper.this C# (CSharp) 메소드

this() 공개 메소드

public this ( int index ) : object
index int
리턴 object
			public override object this[int index] 
			{
				get 
				{
					lock (m_SyncRoot) 
					{
						return m_InnerArrayList[index];
					}
				}

				set 
				{
					lock (m_SyncRoot) 
					{
						m_InnerArrayList[index] = value;
					}
				}
			}