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

◆ CompileToAssembly() [3/3]

static void System.Text.RegularExpressions.Regex.CompileToAssembly ( RegexCompilationInfo[] regexinfos,
AssemblyName assemblyname,
CustomAttributeBuilder?[] attributes,
string? resourceFile )
inlinestatic

Definition at line 204 of file Regex.cs.

205 {
206 if (assemblyname == null)
207 {
208 ThrowHelper.ThrowArgumentNullException(ExceptionArgument.assemblyname);
209 }
210 if (regexinfos == null)
211 {
212 ThrowHelper.ThrowArgumentNullException(ExceptionArgument.regexinfos);
213 }
214 throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_CompileToAssembly);
215 }
static string PlatformNotSupported_CompileToAssembly
Definition SR.cs:70
Definition SR.cs:7

References System.Text.RegularExpressions.assemblyname, System.SR.PlatformNotSupported_CompileToAssembly, System.Text.RegularExpressions.regexinfos, and System.Text.RegularExpressions.ThrowHelper.ThrowArgumentNullException().