up vote 1 down vote favorite
share [g+] share [fb]

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?

link|improve this question

74% 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 '09 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 '09 at 4:31
feedback

2 Answers

You should look at AOP techniques, specifically PostSharp

link|improve this answer
feedback

Vote this up:

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

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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