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

◆ AddResource() [3/5]

void System.Resources.ResourceWriter.AddResource ( string name,
Stream? value )
inline

Definition at line 49 of file ResourceWriter.cs.

50 {
51 if (name == null)
52 {
53 throw new ArgumentNullException("name");
54 }
55 if (_resourceList == null)
56 {
58 }
60 }
void AddResourceInternal(string name, Stream value, bool closeAfterWrite)
SortedDictionary< string, object > _resourceList
static string InvalidOperation_ResourceWriterSaved
Definition SR.cs:14
Definition SR.cs:7

References System.Resources.ResourceWriter._resourceList, System.Resources.ResourceWriter.AddResourceInternal(), System.SR.InvalidOperation_ResourceWriterSaved, and System.value.