ATMLModelLibrary.model.uut.UUTDescription.ToString C# (CSharp) Method

ToString() public method

public ToString ( ) : string
return string
        public override string ToString()
        {
            return name + " - " + _item;
        }

Usage Example

 /**
  * To create a new project we need to have a UUT selected - this should be the same UUT identifier located
  * in the TPSI file. TODO: Should we create a project from the TPSI file - open the TPSI here?
  */
 private void btnSelectUUT_Click(object sender, EventArgs e)
 {
     var form = new ATMLLibraryForm(typeof (UUTDescriptionListControl));
     if (DialogResult.OK == form.ShowDialog())
     {
         errorProvider1.SetError(edtProjectName, "");
         errorProvider1.SetError(edtUUT, "");
         _uutDescription = form.SelectedObject as UUTDescription;
         if (_uutDescription != null)
         {
             edtUUT.Value = _uutDescription.ToString();
             if (!edtProjectName.HasValue())
                 edtProjectName.Value = _uutDescription.Item.Identification.ModelName;
         }
     }
 }