CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2
  1. #1
    Join Date
    Feb 2003
    Location
    Israel
    Posts
    102

    RegexOptions.Compiled

    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?

  2. #2
    Join Date
    Nov 2002
    Location
    Singapore
    Posts
    1,890
    it means that it makes a binary assembly code in compile time and not at run time...

    Paresh

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured