0
如何編寫PostSharp方面以將屬性應用於類?該方案是這樣的:使用Postharp構造方法
public sample ss()
{
file.create("some file ");
}
可通過
[assembly: MyAspect(AttributeTargetAssembly="mscorlib", AttributeTargetTypes="System.IO.File", AttributeTargetMembers="Create"]
同樣,對於下面的結構如何創造方面進行aspected?
public sample ss()
{
StreamWriter sw= new StreamWriter("some file");
}
是否有可能做到?
等待您的寶貴意見和sugessions