Nominal .Net method to return a company sort string, given a string identifying the company name.

Namespace: Asi.iBO.ContactManagement
Assembly: Asi.iBO (in Asi.iBO.dll) Version: 15.1.3.0

Syntax

C#
public static string FormatCompanySort(
	string companyName
)
Visual Basic
Public Shared Function FormatCompanySort ( _
	companyName As String _
) As String
Visual C++
public:
static String^ FormatCompanySort(
	String^ companyName
)

Parameters

companyName
Type: System..::..String
The input string to be manipulated.

Return Value

An upper-case version of companyName.

Remarks

This method simply up-cases the incoming string. It is only really included here for consistency with the processing pattern associated with GetLastFirst and GetFullName.

See Also