特定の属性を持つメソッド名の解析に必要なヘルプ。
ルール:
1) 最小の '[Test' で属性付けされたすべてのメソッドをリストする必要があります。
2) methodName には、名前の前にスペース文字があり、名前の最後に「(」記号があります。ほとんどの場合、Test 属性の次の行または 2 行目にあります。
サンプル 1:
[Test]
public Type methodName(parametes ...)
サンプル 2:
//[Test]
public Type methodName(parametes ...)
サンプル 3:
[Test (, some names etc)]
public Type methodName(parametes ...)
サンプル 4:
[Test (, some names etc)]
[Other optional attributes]
public Type methodName(parametes ...)
期待される結果: methodName
このRegex Match all characters between two strings のような提案をいくつか試しました。しかし、成功していません。