Click to See Complete Forum and Search --> : RegexOptions.Compiled


underwar
March 3rd, 2003, 05:06 PM
As M$ describe in MSDN, using RegexOptions.Compiled will compile the regular expression into the assembly for faster execution.
What exactly "compile the regular expression into the assembly" means in this case?
Why it will make the program runs faster?

pareshgh
March 3rd, 2003, 06:00 PM
it means that it makes a binary assembly code in compile time and not at run time...

Paresh