Skip to content

Latest commit

 

History

History
22 lines (13 loc) · 854 Bytes

File metadata and controls

22 lines (13 loc) · 854 Bytes

AMT.Extensions.System

Extensions for .NET's System namespace

Base64 Support for Urls

  • Convert.ToBase64Url - encodes using base64url
  • Convert.FromBase64Url - decodes from base64url

Labeled Collection [deprecated]

  • Collections.Generic.ILabeledCollection - provides labeling for collections.
  • Collections.Generic.LabeledCollection - implements ILabeledCollection.

Deprecation Notice

Our labeled collections were designed for better performance with large data sets. We find little performance difference with the data sets we have encountered, so there is little value in maintaining them.

Our recommendations for associating labels with values are:

  • List<KeyValuePair<string, TItem>> - a collection of items associated with nonunique labels.
  • Dictionary<string, TItem> - a collection of items associated with unique labels.