クラスに属性を適用する PostSharp アスペクトを作成するにはどうすればよいですか? シナリオは次のようになります。
public sample ss()
{
file.create("some file ");
}
を通じてアスペクトすることができます
[assembly: MyAspect(AttributeTargetAssembly="mscorlib", AttributeTargetTypes="System.IO.File", AttributeTargetMembers="Create"]
同様に、以下の構造については、どのようにアスペクトを作成できますか?
public sample ss()
{
StreamWriter sw= new StreamWriter("some file");
}
できることはありますか?
貴重なご意見、ご提案をお待ちしております