Data Types C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.Drawing;
using System.IO;
using System.Runtime.Serialization.Formatters.Binary;
namespace AltSerializer.Tests
{
    public static class Common
    {
        /// 
        /// Get the last word
        /// 

        /// 
        /// 
        /// 
        public static string GetLastWord(string sentence, string seperator)
        {
            string[] words = sentence.Split(seperator.ToCharArray());
            return words[words.Length - 1];
        }
    }
}