Bamboo.Prevalence.Collections.List.this C# (CSharp) Метод

this() публичный Метод

public this ( int index ) : object
index int
Результат object
		public object this[int index]
		{
			get
			{
				AcquireReaderLock();
				try
				{
					return _list[index];
				}
				finally
				{
					ReleaseReaderLock();
				}
			}

			set
			{
				AcquireWriterLock();
				try
				{
					_list[index] = value;
				}
				finally
				{
					ReleaseWriterLock();
				}
			}
		}