wizlog
wizlog

Reputation: 302

Match and RegEx in C# form?

Can RegEx and Match be used in a Windows Form? I know they work in the console applications...

I'm trying to convert a Console app to a Windows Form Application.

Upvotes: 0

Views: 698

Answers (2)

James Hill
James Hill

Reputation: 61802

RegEx can be used in anything that can access the .Net Framework. WinForms, Console, WPF, code-behind in an ASP.Net website, etc.

You could even create an instance of the RegEx class in ColdFusion using .Net integration (crazy, I know)!

Upvotes: 5

Kratz
Kratz

Reputation: 4330

Yes, most .NET library functions can be used in any type of application.

Upvotes: 1

Related Questions