Internationalization C#

using System;
using System.Collections.Generic;
using System.Text;
using System.Runtime.InteropServices;
using System.IO;
namespace Vestris.ResourceLib
{
    /// 
    /// Resource utilities.
    /// 

    public abstract class ResourceUtil
    {
        /// 
        /// Returns the high WORD from a DWORD value.
        /// 

        /// WORD value.
        /// High WORD.
        internal static UInt16 LoWord(UInt32 value)
        {
            return (UInt16) (value & 0x0000FFFF);
        }
    }
}