Nettiers.AdventureWorks.Entities.EntityUtil.GetTypeNames C# (CSharp) Method

GetTypeNames() public static method

Outputs a string containing the type names, delimited by ", "
public static GetTypeNames ( ) : string
return string
		public static string GetTypeNames(params Type[] types)
		{
			StringBuilder builder = new StringBuilder();

			foreach ( Type type in types )
			{
				if ( builder.Length > 0 )
				{
					builder.Append(", ");
				}

				builder.Append(type.Name);
			}

			return builder.ToString();
		}
	}