This is an example Ruby snippet:
def HavingFun? () @lang == :ruby end |
…and here’s a C# one:
public bool IsHavingFun { get { return _isHavingFun; } private set { _isHavingFun = value; } } |
… both styled by the WP-CodeBox plugin.
This is an example Ruby snippet:
def HavingFun? () @lang == :ruby end |
…and here’s a C# one:
public bool IsHavingFun { get { return _isHavingFun; } private set { _isHavingFun = value; } } |
… both styled by the WP-CodeBox plugin.
Be nice. Keep it clean. Stay on topic. No spam.
You can use these tags:
<a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>
In Visual Studio 2008 it would look like:
public bool IsHavingFun { get; set; }