Search Results

1
vote
4answers
346 views

What are the best/most popular ways to do aspect-oriented programming (AOP) in C#/.Net?

What are the best/most popular ways to do aspect-oriented programming (AOP) in C#/.Net? …
0
votes
6answers
2k views

C#: How do I call a static method of a base class from a static method of a derived class?

In C#, I have base class Product and derived class Widget. Product contains a static method MyMethod(). I want to call static method Product.MyMethod() from static method Widget.MyM …
0
votes

Reading and posting to web pages using C#

I've had very good luck with this product: IMacros http://www.iopus.com/ I have an app that's been running for many months …
0
votes

Is there a way to force a C# class to implement certain static functions?

The singleton pattern does not help in all cases. My example is from an actual project of mine. It is not contrived. I have a class (let's call it "Widget") that inherits from a class in …