Nettiers.AdventureWorks.Entities.VJobCandidateBase.ToString C# (CSharp) Method

ToString() public method

Returns a String that represents the current object.
public ToString ( ) : string
return string
		public override string ToString()
		{
			return string.Format(System.Globalization.CultureInfo.InvariantCulture,
				"{17}{16}- JobCandidateId: {0}{16}- EmployeeId: {1}{16}- SafeNameNamePrefix: {2}{16}- SafeNameNameFirst: {3}{16}- SafeNameNameMiddle: {4}{16}- SafeNameNameLast: {5}{16}- SafeNameNameSuffix: {6}{16}- Skills: {7}{16}- SafeNameAddrType: {8}{16}- SafeNameAddrLocCountryRegion: {9}{16}- SafeNameAddrLocState: {10}{16}- SafeNameAddrLocCity: {11}{16}- SafeNameAddrPostalCode: {12}{16}- Email: {13}{16}- WebSite: {14}{16}- ModifiedDate: {15}{16}", 
				this.JobCandidateId,
				(this.EmployeeId == null) ? string.Empty : this.EmployeeId.ToString(),
			     
				(this.SafeNameNamePrefix == null) ? string.Empty : this.SafeNameNamePrefix.ToString(),
			     
				(this.SafeNameNameFirst == null) ? string.Empty : this.SafeNameNameFirst.ToString(),
			     
				(this.SafeNameNameMiddle == null) ? string.Empty : this.SafeNameNameMiddle.ToString(),
			     
				(this.SafeNameNameLast == null) ? string.Empty : this.SafeNameNameLast.ToString(),
			     
				(this.SafeNameNameSuffix == null) ? string.Empty : this.SafeNameNameSuffix.ToString(),
			     
				(this.Skills == null) ? string.Empty : this.Skills.ToString(),
			     
				(this.SafeNameAddrType == null) ? string.Empty : this.SafeNameAddrType.ToString(),
			     
				(this.SafeNameAddrLocCountryRegion == null) ? string.Empty : this.SafeNameAddrLocCountryRegion.ToString(),
			     
				(this.SafeNameAddrLocState == null) ? string.Empty : this.SafeNameAddrLocState.ToString(),
			     
				(this.SafeNameAddrLocCity == null) ? string.Empty : this.SafeNameAddrLocCity.ToString(),
			     
				(this.SafeNameAddrPostalCode == null) ? string.Empty : this.SafeNameAddrPostalCode.ToString(),
			     
				(this.Email == null) ? string.Empty : this.Email.ToString(),
			     
				(this.WebSite == null) ? string.Empty : this.WebSite.ToString(),
			     
				this.ModifiedDate,
				System.Environment.NewLine, 
				this.GetType());
		}