System.Collections.Hashtable.HashtableDebugView.HashtableDebugView C# (CSharp) Method

HashtableDebugView() public method

public HashtableDebugView ( Hashtable hashtable ) : System.Diagnostics
hashtable Hashtable
return System.Diagnostics
            public HashtableDebugView(Hashtable hashtable)
            {
                if (hashtable == null)
                {
                    throw new ArgumentNullException(nameof(hashtable));
                }
                Contract.EndContractBlock();

                _hashtable = hashtable;
            }
Hashtable.HashtableDebugView