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

◆ AddResource() [4/5]

void System.Resources.ResourceWriter.AddResource ( string name,
Stream? value,
bool closeAfterWrite = false )
inline

Definition at line 144 of file ResourceWriter.cs.

145 {
146 if (name == null)
147 {
148 throw new ArgumentNullException("name");
149 }
150 if (_resourceList == null)
151 {
153 }
155 }
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.