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
    {
        /// 
        /// Determines if a string consists of all valid ASCII values.
        /// 

        /// 
        /// 
        public static bool IsAscii(this string str)
        {
            if (string.IsNullOrEmpty(str)) return true;
            foreach (var ch in str)
                if ((int)ch > 127) return false;
            return true;
        }
   }
}