Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ Add() [2/2]

virtual void System.Collections.Specialized.StringDictionary.Add ( string key,
string? value )
inlinevirtualinherited

Definition at line 43 of file StringDictionary.cs.

44 {
45 if (key == null)
46 {
47 throw new ArgumentNullException("key");
48 }
49 contents.Add(key.ToLowerInvariant(), value);
50 }
virtual void Add(object key, object? value)
Definition Hashtable.cs:676

References System.Collections.Hashtable.Add(), System.Collections.Specialized.StringDictionary.contents, System.key, and System.value.

Referenced by System.Net.Mime.ContentDisposition.ParseValue().