skip navigation
  • Product Bundles

    DevCraft

    All Telerik .NET tools and Kendo UI JavaScript components in one package. Now enhanced with:

    • AI Coding Assistants
    • Embedded Reporting
    • Document Processing Libraries
    • SSO Account Sign-in

    Web

    Kendo UI UI for Angular UI for Vue UI for jQuery KendoReact UI for Blazor UI for ASP.NET Core UI for ASP.NET MVC UI for ASP.NET AJAX

    Mobile

    UI for .NET MAUI

    Document Management

    Telerik Document Processing

    Desktop

    UI for .NET MAUI UI for WinUI UI for WinForms UI for WPF

    Reporting

    Telerik Reporting Telerik Report Server

    Testing & Mocking

    Test Studio Telerik JustMock

    CMS

    Sitefinity

    AI Productivity Tools

    AI Coding Assistants

    UI/UX Tools

    ThemeBuilder Design System Kit Templates and Building Blocks

    Debugging

    Fiddler Fiddler Everywhere Fiddler Classic Fiddler Everywhere Reporter FiddlerCore

    Free Tools

    KendoReact Free VB.NET to C# Converter Testing Framework
    View all products
  • Overview
  • Demos
    • What's New
    • Roadmap
    • Release History
  • Support and Learning

    • Support and Learning Hub
    • First Steps
    • Docs
    • Demos
    • Virtual Classroom
    • Forums
    • Videos
    • Blogs
    • Accessibility
    • Submit a Ticket

    Productivity and Design Tools

    • Visual Studio Extensions
    • Visual Studio Templates
    • Embedded Reporting
  • Pricing
  • Shopping cart
    • Account Overview
    • Your Licenses
    • Downloads
    • Support Center
    • Forum Profile
    • Payment Methods
    • Edit Profile
    • Log out
  • Login
  • Contact Us
  • Try now

Class LowerCaseDictionary<T>

An IDictionary{string, T} containing lowercase keys only.

Inheritance
System.Object
LowerCaseDictionary<T>
Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: Telerik.WinForms.Documents.FormatProviders.Html
Assembly: Telerik.WinControls.RichTextEditor.dll

Syntax

public class LowerCaseDictionary<T> : IDictionary<string, T>, ICollection<KeyValuePair<string, T>>, IEnumerable<KeyValuePair<string, T>>, IEnumerable
Type Parameters
T

The type of the values inside the dictionary.

Constructors

LowerCaseDictionary()

Initializes a new instance of the LowerCaseDictionary<T> class.

Declaration
public LowerCaseDictionary()

Properties

Count

Gets the number of elements contained in the System.Collections.Generic.ICollection<T>.

Declaration
public int Count { get; }
Property Value
System.Int32

Implements
System.Collections.Generic.ICollection<T>.Count

Item[String]

Gets or sets the T with the specified key.

Declaration
public T this[string key] { get; set; }
Parameters
System.String key

The key.

Property Value
T

The T.

Implements
System.Collections.Generic.IDictionary<TKey, TValue>.Item[TKey]

Keys

Gets an System.Collections.Generic.ICollection<T> containing the keys of the System.Collections.Generic.IDictionary<TKey, TValue>.

Declaration
public ICollection<string> Keys { get; }
Property Value
System.Collections.Generic.ICollection<System.String>

Implements
System.Collections.Generic.IDictionary<TKey, TValue>.Keys

Values

Gets an System.Collections.Generic.ICollection<T> containing the values in the System.Collections.Generic.IDictionary<TKey, TValue>.

Declaration
public ICollection<T> Values { get; }
Property Value
System.Collections.Generic.ICollection<T>

Implements
System.Collections.Generic.IDictionary<TKey, TValue>.Values

Methods

Add(String, T)

Adds an element with the provided key and value to the System.Collections.Generic.IDictionary<TKey, TValue>.

Declaration
public void Add(string key, T value)
Parameters
System.String key

The object to use as the key of the element to add.

T value

The object to use as the value of the element to add.

Implements
System.Collections.Generic.IDictionary<TKey, TValue>.Add(TKey, TValue)

Clear()

Removes all items from the System.Collections.Generic.ICollection<T>.

Declaration
public void Clear()
Implements
System.Collections.Generic.ICollection<T>.Clear()

ContainsKey(String)

Determines whether the System.Collections.Generic.IDictionary<TKey, TValue> contains an element with the specified key.

Declaration
public bool ContainsKey(string key)
Parameters
System.String key

The key to locate in the System.Collections.Generic.IDictionary<TKey, TValue>.

Returns
System.Boolean

true if the System.Collections.Generic.IDictionary<TKey, TValue> contains an element with the key; otherwise, false.

Implements
System.Collections.Generic.IDictionary<TKey, TValue>.ContainsKey(TKey)

CopyTo(KeyValuePair<String, T>[], Int32)

Copies the elements of the System.Collections.Generic.ICollection<T> to an System.Array, starting at a particular System.Array index.

Declaration
public void CopyTo(KeyValuePair<string, T>[] array, int arrayIndex)
Parameters
System.Collections.Generic.KeyValuePair<System.String, T>[] array

The one-dimensional System.Array that is the destination of the elements copied from System.Collections.Generic.ICollection<T>. The System.Array must have zero-based indexing.

System.Int32 arrayIndex

The zero-based index in array at which copying begins.

Implements
System.Collections.Generic.ICollection<T>.CopyTo(T[], System.Int32)

Remove(String)

Removes the element with the specified key from the System.Collections.Generic.IDictionary<TKey, TValue>.

Declaration
public bool Remove(string key)
Parameters
System.String key

The key of the element to remove.

Returns
System.Boolean

true if the element is successfully removed; otherwise, false. This method also returns false if key was not found in the original System.Collections.Generic.IDictionary<TKey, TValue>.

Implements
System.Collections.Generic.IDictionary<TKey, TValue>.Remove(TKey)

TryGetValue(String, out T)

Gets the value associated with the specified key.

Declaration
public bool TryGetValue(string key, out T value)
Parameters
System.String key

The key whose value to get.

T value

When this method returns, the value associated with the specified key, if the key is found; otherwise, the default value for the type of the value parameter. This parameter is passed uninitialized.

Returns
System.Boolean

true if the object that implements System.Collections.Generic.IDictionary<TKey, TValue> contains an element with the specified key; otherwise, false.

Implements
System.Collections.Generic.IDictionary<TKey, TValue>.TryGetValue(TKey, TValue)

Explicit Interface Implementations

ICollection<KeyValuePair<String, T>>.Add(KeyValuePair<String, T>)

Declaration
void ICollection<KeyValuePair<string, T>>.Add(KeyValuePair<string, T> item)
Parameters
System.Collections.Generic.KeyValuePair<System.String, T> item

Implements
System.Collections.Generic.ICollection<T>.Add(T)

ICollection<KeyValuePair<String, T>>.Contains(KeyValuePair<String, T>)

Declaration
bool ICollection<KeyValuePair<string, T>>.Contains(KeyValuePair<string, T> item)
Parameters
System.Collections.Generic.KeyValuePair<System.String, T> item

Returns
System.Boolean

Implements
System.Collections.Generic.ICollection<T>.Contains(T)

ICollection<KeyValuePair<String, T>>.IsReadOnly

Declaration
bool ICollection<KeyValuePair<string, T>>.IsReadOnly { get; }
Returns
System.Boolean

Implements
System.Collections.Generic.ICollection<T>.IsReadOnly

ICollection<KeyValuePair<String, T>>.Remove(KeyValuePair<String, T>)

Declaration
bool ICollection<KeyValuePair<string, T>>.Remove(KeyValuePair<string, T> item)
Parameters
System.Collections.Generic.KeyValuePair<System.String, T> item

Returns
System.Boolean

Implements
System.Collections.Generic.ICollection<T>.Remove(T)

IEnumerable<KeyValuePair<String, T>>.GetEnumerator()

Declaration
IEnumerator<KeyValuePair<string, T>> IEnumerable<KeyValuePair<string, T>>.GetEnumerator()
Returns
System.Collections.Generic.IEnumerator<System.Collections.Generic.KeyValuePair<System.String, T>>

Implements
System.Collections.Generic.IEnumerable<T>.GetEnumerator()

IEnumerable.GetEnumerator()

Declaration
IEnumerator IEnumerable.GetEnumerator()
Returns
System.Collections.IEnumerator

Implements
System.Collections.IEnumerable.GetEnumerator()

Extension Methods

CommonExtensions.AddRange<T>(ICollection<T>, IEnumerable<T>)
CommonExtensions.ContainsAny<T>(IEnumerable<T>, IEnumerable<T>)
CommonExtensions.ForEach<T>(IEnumerable<T>, Action<T>)
CommonExtensions.Clone<T>(IEnumerable<T>)
SvgExtentions.Traverse<T>(IEnumerable<T>, Func<T, IEnumerable<T>>)
SvgExtentions.Traverse<T>(T, Func<T, IEnumerable<T>>)
SvgExtentions.TraverseDepthFirst<T>(IEnumerable<T>, Func<T, IEnumerable<T>>)
SvgExtentions.TraverseDepthFirst<T>(T, Func<T, IEnumerable<T>>)
Getting Started
  • Install Now
  • Demos
  • Step-by-Step Tutorial
  • Sample Applications
  • SDK Samples
  • Visual Studio Extensions
Support Resources
  • Code Library
  • Knowledge Base
  • Videos
Community
  • Forums
  • Blogs
  • Feedback Portal
  • Document Processing Feedback Portal

Copyright © 2018 Progress Software Corporation and/or its subsidiaries or affiliates.
All Rights Reserved.

Progress, Telerik, and certain product names used herein are trademarks or registered trademarks of Progress Software Corporation and/or one of its subsidiaries or affiliates in the U.S. and/or other countries. See Trademarks for appropriate markings.