Coalesce ?? operator in C# 2.0

Jan 14
2008 21:18 (ASP.NET, Development) · Русский (5,449 views)

Operator ??, that was introduced in the .NET 2.0, takes first place in my top used C# idioms list a long time, but unfortunately it is rarely used in projects I’ve participated. Therefore these snippets could be found in production code very often:

public string Caption
{
    get { return ViewState["Caption"] != null ? (string) ViewState["Caption"] : ""; }
    set { ViewState["Caption"] = value; }
}

Read the rest of entry »

CodeColorer updated to version 0.5.1

Apr 01
2007 17:29 (WordPress) · Русский (5,569 views)

Right after publishing my previous post about Wordpress plugins updates, I found that GeSHi library has been updated, therefor I have updated CodeColorer too.

Read the rest of entry »

Wordpress plugins updates

Apr 01
2007 16:29 (Development, WordPress) · Русский (5,001 views)

Today I finished reorganization of my blog and now all my Wordpress plugins moved to separate page. Check it if you are using my plugins in your blog. In this post I’ll describe which plugins I have at this moment.

Read the rest of entry »

Parabox Style — Nice theme for Zend Studio

Jan 30
2006 12:47 (Development, PHP) · Русский (7,416 views)

Today I’ve found very nice theme for Zend Studio in the Parabox Blog. Here are some screeshots:

PHP Color Scheme HTML Color Scheme

Other screenshots and this theme file you can find here.

 
Copyright © 2005 - 2008, Dmytro Shteflyuk