AspNet.StarterKits.Classifieds.Web.OutputFormatting.AdTypeToString C# (CSharp) Method

AdTypeToString() public static method

public static AdTypeToString ( AdType adType ) : string
adType AdType
return string
		public static string AdTypeToString(AdType adType)
		{
			switch (adType)
			{
				case AdType.ForSale:
					return "For Sale";
				case AdType.Wanted:
					return "Wanted";
				default:
					return "(other)";
			}
		}

Same methods

OutputFormatting::AdTypeToString ( object adType ) : string