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

◆ GetManifestResourceStream() [2/2]

override Stream System.Reflection.RuntimeAssembly.GetManifestResourceStream ( Type type,
string name )
inlinevirtual

Reimplemented from System.Reflection.Assembly.

Definition at line 249 of file RuntimeAssembly.cs.

250 {
251 if (type == null && name == null)
252 {
253 throw new ArgumentNullException("type");
254 }
255 string text = type?.Namespace;
256 char ptr = Type.Delimiter;
257 string name2 = ((text != null && name != null) ? string.Concat(text, new ReadOnlySpan<char>(ref ptr, 1), name) : (text + name));
259 }
override Stream GetManifestResourceStream(Type type, string name)

References System.Type.Delimiter, System.Reflection.RuntimeAssembly.GetManifestResourceStream(), System.text, and System.type.

Referenced by System.Reflection.RuntimeAssembly.GetManifestResourceStream().