Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否可以使用 PostSharp 拦截类构造函数和析构函数调用?我想为类创建活动实例计数器。
您可以在构造函数和析构函数上使用 OnMethodBoundaryAspect。请注意,在 C# 和 VB 中默认情况下类没有析构函数,并且析构函数在不确定的时刻被调用。
请记住,构造函数可以在链中调用,并且方面将应用于链中的每个构造函数。