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

public ToString ( ) : string
Результат string
Пример #1
0
 private void cmbbTests_SelectedIndexChanged(object sender, EventArgs e)
 {
     _testEntry  = cmbbTests.SelectedItem as TestEntry;
     CurrentTest = _testEntry.CreateFcn();
     this.Text   = "Box2DX " + Application.ProductVersion + " - " + _testEntry.ToString();
 }
Пример #2
0
		private void cmbbTests_SelectedIndexChanged(object sender, EventArgs e)
		{
			testEntry = cmbbTests.SelectedItem as TestEntry;
			CurrentTest = testEntry.CreateFcn();
			this.Text = "Box2DX " + Application.ProductVersion + " - " + testEntry.ToString();
		}