AppCompat.MainActivity.LoadList C# (CSharp) Method

LoadList() private method

private LoadList ( ) : void
return void
		async void LoadList ()
		{
			adapter = new ArrayAdapter (this, Android.Resource.Layout.SimpleListItem1, new string[] {
				"Tamarin", "Chimpanzé", "Gorille", "Singe", "Babouin"
			});

			// Simulate network fetching
			await Task.Delay (5000);
			list.ListAdapter = adapter;
		}
	}