I need help with regex, where I pass this kind of string:
"MethodName(int? Property1, string Property2, List<int?> Property3)"
and receive method and property names as string array. Something like this:
["MethodName","Property1","Property2","Property3"]
I've tried this: Regex to get method parameter name
and this Regex to extract function-name, & it's parameters
But could not get results I needed