Cool PostSharp aspects - Stack Overflow most recent 30 from stackoverflow.com2009-12-06T23:17:10Zhttp://stackoverflow.com/feeds/question/501857http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/501857/cool-postsharp-aspects2Cool PostSharp aspectsDmitri Nesteruk2009-02-01T23:48:42Z2009-05-06T17:55:22Z
<p>I'm looking for interesting PostSharp aspects - anything that you found useful and wouldn't mind sharing.</p>
http://stackoverflow.com/questions/501857/cool-postsharp-aspects/502032#5020320Answer by Ric Tokyo for Cool PostSharp aspectsRic Tokyo2009-02-02T02:20:50Z2009-02-02T02:20:50Z<p>Hi,</p>
<p>The coolest aspect of it for me is that it can help me implement the <a href="http://en.wikipedia.org/wiki/Single_responsibility_principle" rel="nofollow">single responsibility principle</a>:</p>
<p><em>"In object-oriented programming, the single responsibility principle states that every object should have a single responsibility, and that all its services should be narrowly aligned with that responsibility."</em></p>
<p>I hope to adopt this more fully with more experience in the future, but for now, I have just started with having it built in to my logging needs:</p>
<p>together with <a href="http://code.google.com/p/postsharp-user-plugins/wiki/Log4PostSharp" rel="nofollow">Log4PostSharp</a>, I can do:</p>
<pre><code>[Log(LogLevel.Info, "Counting characters.")]
int CountCharacters(string arg) {
return arg.Length;
}
</code></pre>
<p>What this means is that, the responsibility of logging is ascribed elsewhere (coding wise), and injected from a separate source by PostSharp and Log4PostSharp magic.</p>
http://stackoverflow.com/questions/501857/cool-postsharp-aspects/502620#5026201Answer by Marc Gravell for Cool PostSharp aspectsMarc Gravell2009-02-02T09:02:50Z2009-02-02T09:02:50Z<p>Daft question, but isn't that the purpose of the <a href="http://www.postsharp.org/contributions" rel="nofollow">Contributions Directory</a>? There used to be a good example of automatic property-change implementation (<code>INotifyPropertyChanged</code>), but I can't find it now...</p>
http://stackoverflow.com/questions/501857/cool-postsharp-aspects/830867#8308672Answer by just3ws for Cool PostSharp aspectsjust3ws2009-05-06T17:55:22Z2009-05-06T17:55:22Z<p>D. Patrick Caldwell has some cool ideas on his blog.</p>
<p>Validate Parameters Using Attributes and PostSharp
<a href="http://dpatrickcaldwell.blogspot.com/2009/03/validate-parameters-using-attributes.html" rel="nofollow">http://dpatrickcaldwell.blogspot.com/2009/03/validate-parameters-using-attributes.html</a></p>
<ul>
<li>Implmementing Coding Contracts using PostSharp.</li>
</ul>
<p>Memoizer Attribute Using PostSharp
<a href="http://dpatrickcaldwell.blogspot.com/2009/02/memoizer-attribute-using-postsharp.html" rel="nofollow">http://dpatrickcaldwell.blogspot.com/2009/02/memoizer-attribute-using-postsharp.html</a></p>
<ul>
<li>Basically, a light-weight field-value caching mechanism.</li>
</ul>