Data Types C#

///
/// ArmyBodger 3
/// (c)2010 richyp
///
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace ArmyBodger.Core.Utilities {
    /// 
    /// Some static helper methods
    /// 

    public class Helpers {
        /// 
        /// Convert the string e.g. fooBar to sentance case: FooBar
        /// 

        /// The string to convert
        /// The converted string
        public static string ConvertToSentenceCase(string source) {
            return source.Substring(0, 1).ToUpper() + source.Substring(1);
        }
    }
}