vote up 0 vote down star

I have the following method which prints lines to the console.

public void MyMethod() {
    try {
        Console.WriteLine("Hello!");
        Console.WriteLine("My name is MyMethod");
    }
    finally {
        Console.WriteLine("Bye.");
    }
}

I have a few of these methods and they all do the same thing (i.e. try { "Hello"; Something; } finally { "Bye." }). To avoid redundancy and make my code clearer, I came up with the following:

public void SayHello(Action myName) {
    try {
        Console.WriteLine("Hello!");
        myName();
    }
    finally {
        Console.WriteLine("Bye.");
    }
}

public void MyMethod2() {
    SayHello(() => Console.WriteLine("My name is MyMethod"));
}

I like this technique, but I think it could be even better by using an attribute. Here is what I would like to ultimately achieve:

[SayHello]
public void MyMethod2() {
    Console.WriteLine("My name is MyMethod");
}

It would be great if I could simply add a method attribute to help me eliminate redundancy (i.e. try { "Hello"; Something; } finally { "Bye." }). Is it possible in C# to create such attribute?

flag

69% accept rate
Not really sure what you're trying to accomplish. Attributes should decorate code, not generate it, otherwise it is not really clear what the code is doing. I would simply try subclassing. – Wilhelm Nov 7 at 17:00
I'd say that the method you're using right now pretty clearly expresses the goal of the code while providing the capability you're looking for, whereas writing it using an attribute is confusing. – qid Nov 8 at 4:31

2 Answers

vote up 4 vote down

You should look at AOP techniques, specifically PostSharp

link|flag
vote up 0 vote down

Vote this up:

"CompileTimeAttribute to inject code at compile time" https://connect.microsoft.com/VisualStudio/feedback/ViewFeedback.aspx?FeedbackID=93682

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.