Hi friends
I want to know what is capture class in C#t.
Thank you
Loading
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
VulpesPosted May 10, 2012, 9:32 AM
However, the Capture class is used in regular expressions and an object of this class represents a single match of a sub-expression (a part of a regular expression enclosed in parentheses). These Capture objects are added to a CaptureCollection and returned by the Match.Captures or Group.Captures properties.
To get a grasp of what this means, I'd study the example in the documentation:
http://msdn.microsoft.com/en-us/library/system.text.regularexpressions.capture.aspx
Jiteendra SampathiraoPosted May 10, 2012, 8:21 AM
Go through this link and Use the console application.. Trace the application(using break points)...
http://msdn.microsoft.com/en-us/library/w9hbw253(v=vs.100)
you ll get better idea...