Data Types C#

//Microsoft Public License (Ms-PL)
//http://visualizer.codeplex.com/license
using System;
using System.Collections.Generic;
namespace Redwerb.BizArk.Core.StringExt
{
    /// 
    /// Provides extension methods for strings.
    /// 

    public static class StringExt
    {
        /// 
        /// Shortcut for string.Format.
        /// 

        /// 
        /// 
        /// 
        public static string Format(this string str, params object[] args)
        {
            if (str == null) return null;
            return string.Format(str, args);
        }
   }
}