Business suffixes

Business suffixes contained within WorldBusinessSuffix instances and is mostly used in various data generators.

Each WorldBusinessSuffix instance contains data concerning business suffixes and contains the following information:

  • BusinessSuffix - Business suffix
  • Country - Country code

Below are a few examples:

BusinessSuffix Country
Ltd. Co. US
LLC US
Inc. US
AG DE
S.C. CO

A collection of all WorldBusinessSuffix instances can be accessed with PickLists.WorldBusinessSuffixes, an IEnumerable collection. In addition to the standard methods the Enumerable type offers, you can also use the following filtering methods:

  • OnlyBusinessSuffixes() - Returns only business suffixes, without country codes, in string format
    PickLists.WorldBusinessSuffixes.OnlyBusinessSuffixes()

  • OnlyCountry(string country) - Returns business suffixes from the country represented by the given country code
    PickLists.WorldBusinessSuffixes.OnlyCountry("US")