假设我有这些结构
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 ..
它工作正常..
有什么办法可以解决这个问题...
等待你的答复