Win32-optimized implementation of FileCharacteristicsHelper.
Inheritance: FileCharacteristicsHelper
        /// <summary>
        /// Initializes static members of the FileCharacteristicsHelper class.
        /// </summary>
        static FileCharacteristicsHelper()
        {
#if SILVERLIGHT
            Helper = new PortableFileCharacteristicsHelper();
#else
            if (PlatformDetector.IsDesktopWin32)
            {
                Helper = new Win32FileCharacteristicsHelper();
            }
            else
            {
                Helper = new PortableFileCharacteristicsHelper();
            }
#endif
        }
        /// <summary>
        /// Initializes static members of the FileCharacteristicsHelper class.
        /// </summary>
        static FileCharacteristicsHelper()
        {
#if SILVERLIGHT
            Helper = new PortableFileCharacteristicsHelper();
#else
            if (PlatformDetector.IsDesktopWin32)
            {
                Helper = new Win32FileCharacteristicsHelper();
            }
            else
            {
                Helper = new PortableFileCharacteristicsHelper();
            }
#endif
        }