0

假设我有这些结构

class ss
{

 public void createfile() 
    { 
        StreamWriter sw= new StreamWriter("d:/test.txt");     
    }
}

我需要在我使用 StreamWriter 的地方做方面?

至于考虑我已经使用下面的代码

[assembly: MyAspect(AttributeTargetAssembly="mscorlib", AttributeTargetTypes="System.IO.File", AttributeTargetMembers="Create"]

for file.create method ..

它工作正常..

有什么办法可以解决这个问题...

等待你的答复

4

1 回答 1

0

您可能想稍微澄清一下您的问题,我不知道您是否看过以下链接...

http://www.codeproject.com/Articles/337564/Aspect-Oriented-Programming-Using-Csharp-and-PostS

但是,它提供了一个很好的示例,说明您如何以与您描述的方式类似的方式使用 postsharp。

于 2012-10-06T09:34:30.980 回答