<Type Name="NumberStyles" FullName="System.Globalization.NumberStyles" FullNameSP="System_Globalization_NumberStyles" Maintainer="ecma">
  <TypeSignature Language="ILASM" Value=".class public sealed serializable NumberStyles extends System.Enum" />
  <TypeSignature Language="C#" Value="public enum NumberStyles" />
  <TypeSignature Language="ILAsm" Value=".class public auto ansi serializable sealed NumberStyles extends System.Enum" />
  <MemberOfLibrary>BCL</MemberOfLibrary>
  <AssemblyInfo>
    <AssemblyName>mscorlib</AssemblyName>
    <AssemblyPublicKey>[00 00 00 00 00 00 00 00 04 00 00 00 00 00 00 00 ]</AssemblyPublicKey>
    <AssemblyVersion>1.0.5000.0</AssemblyVersion>
    <AssemblyVersion>2.0.0.0</AssemblyVersion>
    <AssemblyVersion>4.0.0.0</AssemblyVersion>
  </AssemblyInfo>
  <Base>
    <BaseTypeName>System.Enum</BaseTypeName>
  </Base>
  <Attributes>
    <Attribute>
      <AttributeName>System.Flags</AttributeName>
    </Attribute>
    <Attribute>
      <AttributeName>System.Runtime.InteropServices.ComVisible(true)</AttributeName>
    </Attribute>
  </Attributes>
  <Docs>
    <summary>
      <para>Specifies styles for <see cref="T:System.String" /> representations of numeric values.</para>
    </summary>
    <remarks>
      <para>
        <see cref="T:System.Globalization.NumberStyles" /> define the presence and/or location of various elements
   in a <see cref="T:System.String" /> representation of a numeric value. <block subset="none" type="note">For example, the <see cref="F:System.Globalization.NumberStyles.AllowParentheses" /> style describes strings where the
   numeric value is enclosed in parenthesis, such as "(432.00)".</block></para>
      <block subset="none" type="note">
        <para>Where symbols such as a currency symbol are allowed in a
   <see cref="T:System.Globalization.NumberStyles" />
   pattern, a <see cref="T:System.Globalization.NumberFormatInfo" /> instance defines the <see cref="T:System.String" /> representations of the symbols.</para>
        <para>
          <see cref="T:System.Globalization.NumberStyles" /> values are passed to methods that convert between
<see cref="T:System.String" /> and 
numeric data types, such as the <see langword="Parse" /> methods implemented by
numeric base types. To specify multiple <see cref="T:System.Globalization.NumberStyles" /> values, use the bitwise OR
operator.</para>
        <para>For a list of the valid white space characters, see
   the <see cref="T:System.String" />
   class.</para>
      </block>
    </remarks>
  </Docs>
  <Members>
    <Member MemberName="AllowCurrencySymbol">
      <MemberSignature Language="ILASM" Value=".field public static literal valuetype System.Globalization.NumberStyles AllowCurrencySymbol = 0x100" />
      <MemberSignature Language="C#" Value="AllowCurrencySymbol" />
      <MemberSignature Language="ILAsm" Value=".field public static literal valuetype System.Globalization.NumberStyles AllowCurrencySymbol = int32(256)" />
      <MemberType>Field</MemberType>
      <AssemblyInfo>
        <AssemblyVersion>1.0.5000.0</AssemblyVersion>
        <AssemblyVersion>2.0.0.0</AssemblyVersion>
        <AssemblyVersion>4.0.0.0</AssemblyVersion>
      </AssemblyInfo>
      <ReturnValue>
        <ReturnType>System.Globalization.NumberStyles</ReturnType>
      </ReturnValue>
      <Parameters />
      <MemberValue>AllowCurrencySymbol</MemberValue>
      <Docs>
        <summary>
          <para>Specifies that a currency symbol is allowed. <block subset="none" type="note"> See <see cref="P:System.Globalization.NumberFormatInfo.CurrencySymbol" /> .</block></para>
        </summary>
        <remarks>To be added.</remarks>
      </Docs>
      <Excluded>0</Excluded>
    </Member>
    <Member MemberName="AllowDecimalPoint">
      <MemberSignature Language="ILASM" Value=".field public static literal valuetype System.Globalization.NumberStyles AllowDecimalPoint = 0x20" />
      <MemberSignature Language="C#" Value="AllowDecimalPoint" />
      <MemberSignature Language="ILAsm" Value=".field public static literal valuetype System.Globalization.NumberStyles AllowDecimalPoint = int32(32)" />
      <MemberType>Field</MemberType>
      <AssemblyInfo>
        <AssemblyVersion>1.0.5000.0</AssemblyVersion>
        <AssemblyVersion>2.0.0.0</AssemblyVersion>
        <AssemblyVersion>4.0.0.0</AssemblyVersion>
      </AssemblyInfo>
      <ReturnValue>
        <ReturnType>System.Globalization.NumberStyles</ReturnType>
      </ReturnValue>
      <Parameters />
      <MemberValue>AllowDecimalPoint</MemberValue>
      <Docs>
        <summary>
          <para>Specifies that a decimal point is allowed. <block subset="none" type="note"> See <see cref="P:System.Globalization.NumberFormatInfo.NumberDecimalSeparator" />, <see cref="P:System.Globalization.NumberFormatInfo.PercentDecimalSeparator" />, and <see cref="P:System.Globalization.NumberFormatInfo.CurrencyDecimalSeparator" /> .</block></para>
        </summary>
        <remarks>To be added.</remarks>
      </Docs>
      <Excluded>0</Excluded>
    </Member>
    <Member MemberName="AllowExponent">
      <MemberSignature Language="ILASM" Value=".field public static literal valuetype System.Globalization.NumberStyles AllowExponent = 0x80" />
      <MemberSignature Language="C#" Value="AllowExponent" />
      <MemberSignature Language="ILAsm" Value=".field public static literal valuetype System.Globalization.NumberStyles AllowExponent = int32(128)" />
      <MemberType>Field</MemberType>
      <AssemblyInfo>
        <AssemblyVersion>1.0.5000.0</AssemblyVersion>
        <AssemblyVersion>2.0.0.0</AssemblyVersion>
        <AssemblyVersion>4.0.0.0</AssemblyVersion>
      </AssemblyInfo>
      <ReturnValue>
        <ReturnType>System.Globalization.NumberStyles</ReturnType>
      </ReturnValue>
      <Parameters />
      <MemberValue>AllowExponent</MemberValue>
      <Docs>
        <summary>
          <para>Specifies that exponential notation is allowed.</para>
          <para>This style is used for values in one of the following forms:</para>
          <para>[-]m.ddddddE+xx 
   </para>
          <para>[-]m.ddddddE-xx</para>
          <para>[-]m.dddddde+xx 
   </para>
          <para>[-]m.dddddde-xx 
   </para>
          <para>One or more non-zero digits (m) precede the decimal 
      separator ("."). A minus sign ("-") can precede m. The type performing the
      conversion determines the number of decimal places (dddddd) in the string, and
      maximum and minimum values for xx and m. The exponent (+/-xx)
      consists of either a plus or minus sign followed by at least one digit.</para>
        </summary>
        <remarks>To be added.</remarks>
      </Docs>
      <Excluded>0</Excluded>
    </Member>
    <Member MemberName="AllowHexSpecifier">
      <MemberSignature Language="ILASM" Value=".field public static literal valuetype System.Globalization.NumberStyles AllowHexSpecifier = 0x200" />
      <MemberSignature Language="C#" Value="AllowHexSpecifier" />
      <MemberSignature Language="ILAsm" Value=".field public static literal valuetype System.Globalization.NumberStyles AllowHexSpecifier = int32(512)" />
      <MemberType>Field</MemberType>
      <AssemblyInfo>
        <AssemblyVersion>1.0.5000.0</AssemblyVersion>
        <AssemblyVersion>2.0.0.0</AssemblyVersion>
        <AssemblyVersion>4.0.0.0</AssemblyVersion>
      </AssemblyInfo>
      <ReturnValue>
        <ReturnType>System.Globalization.NumberStyles</ReturnType>
      </ReturnValue>
      <Parameters />
      <MemberValue>AllowHexSpecifier</MemberValue>
      <Docs>
        <summary>
          <para>Specifies that hexadecimal representation (Base 16) is allowed.</para>
          <para>Valid hexadecimal values include the numeric digits 0-9 and the hexadecimal
      digits A-F, and a-f. The hexadecimal digits can be in upper or lower case.
      Hexadecimal values can be left-padded with zeros. Strings parsed using this
      style are not permitted to be prefixed with "0x".</para>
        </summary>
        <remarks>To be added.</remarks>
      </Docs>
      <Excluded>0</Excluded>
    </Member>
    <Member MemberName="AllowLeadingSign">
      <MemberSignature Language="ILASM" Value=".field public static literal valuetype System.Globalization.NumberStyles AllowLeadingSign = 0x4" />
      <MemberSignature Language="C#" Value="AllowLeadingSign" />
      <MemberSignature Language="ILAsm" Value=".field public static literal valuetype System.Globalization.NumberStyles AllowLeadingSign = int32(4)" />
      <MemberType>Field</MemberType>
      <AssemblyInfo>
        <AssemblyVersion>1.0.5000.0</AssemblyVersion>
        <AssemblyVersion>2.0.0.0</AssemblyVersion>
        <AssemblyVersion>4.0.0.0</AssemblyVersion>
      </AssemblyInfo>
      <ReturnValue>
        <ReturnType>System.Globalization.NumberStyles</ReturnType>
      </ReturnValue>
      <Parameters />
      <MemberValue>AllowLeadingSign</MemberValue>
      <Docs>
        <summary>
          <para>Specifies that a leading sign symbol is allowed. <block subset="none" type="note"> See <see cref="P:System.Globalization.NumberFormatInfo.PositiveSign" /> and <see cref="P:System.Globalization.NumberFormatInfo.NegativeSign" /> .</block></para>
        </summary>
        <remarks>To be added.</remarks>
      </Docs>
      <Excluded>0</Excluded>
    </Member>
    <Member MemberName="AllowLeadingWhite">
      <MemberSignature Language="ILASM" Value=".field public static literal valuetype System.Globalization.NumberStyles AllowLeadingWhite = 0x1" />
      <MemberSignature Language="C#" Value="AllowLeadingWhite" />
      <MemberSignature Language="ILAsm" Value=".field public static literal valuetype System.Globalization.NumberStyles AllowLeadingWhite = int32(1)" />
      <MemberType>Field</MemberType>
      <AssemblyInfo>
        <AssemblyVersion>1.0.5000.0</AssemblyVersion>
        <AssemblyVersion>2.0.0.0</AssemblyVersion>
        <AssemblyVersion>4.0.0.0</AssemblyVersion>
      </AssemblyInfo>
      <ReturnValue>
        <ReturnType>System.Globalization.NumberStyles</ReturnType>
      </ReturnValue>
      <Parameters />
      <MemberValue>AllowLeadingWhite</MemberValue>
      <Docs>
        <summary>
          <para>Specifies that the string can be prefixed with white space characters.</para>
        </summary>
        <remarks>To be added.</remarks>
      </Docs>
      <Excluded>0</Excluded>
    </Member>
    <Member MemberName="AllowParentheses">
      <MemberSignature Language="ILASM" Value=".field public static literal valuetype System.Globalization.NumberStyles AllowParentheses = 0x10" />
      <MemberSignature Language="C#" Value="AllowParentheses" />
      <MemberSignature Language="ILAsm" Value=".field public static literal valuetype System.Globalization.NumberStyles AllowParentheses = int32(16)" />
      <MemberType>Field</MemberType>
      <AssemblyInfo>
        <AssemblyVersion>1.0.5000.0</AssemblyVersion>
        <AssemblyVersion>2.0.0.0</AssemblyVersion>
        <AssemblyVersion>4.0.0.0</AssemblyVersion>
      </AssemblyInfo>
      <ReturnValue>
        <ReturnType>System.Globalization.NumberStyles</ReturnType>
      </ReturnValue>
      <Parameters />
      <MemberValue>AllowParentheses</MemberValue>
      <Docs>
        <summary>
          <para>Specifies that one pair of balanced parentheses is allowed.</para>
        </summary>
        <remarks>To be added.</remarks>
      </Docs>
      <Excluded>0</Excluded>
    </Member>
    <Member MemberName="AllowThousands">
      <MemberSignature Language="ILASM" Value=".field public static literal valuetype System.Globalization.NumberStyles AllowThousands = 0x40" />
      <MemberSignature Language="C#" Value="AllowThousands" />
      <MemberSignature Language="ILAsm" Value=".field public static literal valuetype System.Globalization.NumberStyles AllowThousands = int32(64)" />
      <MemberType>Field</MemberType>
      <AssemblyInfo>
        <AssemblyVersion>1.0.5000.0</AssemblyVersion>
        <AssemblyVersion>2.0.0.0</AssemblyVersion>
        <AssemblyVersion>4.0.0.0</AssemblyVersion>
      </AssemblyInfo>
      <ReturnValue>
        <ReturnType>System.Globalization.NumberStyles</ReturnType>
      </ReturnValue>
      <Parameters />
      <MemberValue>AllowThousands</MemberValue>
      <Docs>
        <summary>
          <para>Specifies that group separators are allowed; for
      instance, separating the hundreds from the thousands. <block subset="none" type="note"> See <see cref="P:System.Globalization.NumberFormatInfo.NumberGroupSeparator" />, <see cref="P:System.Globalization.NumberFormatInfo.PercentGroupSeparator" />, and <see cref="P:System.Globalization.NumberFormatInfo.CurrencyGroupSeparator" /> .</block></para>
        </summary>
        <remarks>To be added.</remarks>
      </Docs>
      <Excluded>0</Excluded>
    </Member>
    <Member MemberName="AllowTrailingSign">
      <MemberSignature Language="ILASM" Value=".field public static literal valuetype System.Globalization.NumberStyles AllowTrailingSign = 0x8" />
      <MemberSignature Language="C#" Value="AllowTrailingSign" />
      <MemberSignature Language="ILAsm" Value=".field public static literal valuetype System.Globalization.NumberStyles AllowTrailingSign = int32(8)" />
      <MemberType>Field</MemberType>
      <AssemblyInfo>
        <AssemblyVersion>1.0.5000.0</AssemblyVersion>
        <AssemblyVersion>2.0.0.0</AssemblyVersion>
        <AssemblyVersion>4.0.0.0</AssemblyVersion>
      </AssemblyInfo>
      <ReturnValue>
        <ReturnType>System.Globalization.NumberStyles</ReturnType>
      </ReturnValue>
      <Parameters />
      <MemberValue>AllowTrailingSign</MemberValue>
      <Docs>
        <summary>
          <para>Specifies that a trailing sign symbol is allowed. <block subset="none" type="note"> See <see cref="P:System.Globalization.NumberFormatInfo.PositiveSign" /> and <see cref="P:System.Globalization.NumberFormatInfo.NegativeSign" /> .</block></para>
        </summary>
        <remarks>To be added.</remarks>
      </Docs>
      <Excluded>0</Excluded>
    </Member>
    <Member MemberName="AllowTrailingWhite">
      <MemberSignature Language="ILASM" Value=".field public static literal valuetype System.Globalization.NumberStyles AllowTrailingWhite = 0x2" />
      <MemberSignature Language="C#" Value="AllowTrailingWhite" />
      <MemberSignature Language="ILAsm" Value=".field public static literal valuetype System.Globalization.NumberStyles AllowTrailingWhite = int32(2)" />
      <MemberType>Field</MemberType>
      <AssemblyInfo>
        <AssemblyVersion>1.0.5000.0</AssemblyVersion>
        <AssemblyVersion>2.0.0.0</AssemblyVersion>
        <AssemblyVersion>4.0.0.0</AssemblyVersion>
      </AssemblyInfo>
      <ReturnValue>
        <ReturnType>System.Globalization.NumberStyles</ReturnType>
      </ReturnValue>
      <Parameters />
      <MemberValue>AllowTrailingWhite</MemberValue>
      <Docs>
        <summary>
          <para>Specifies that the string can be suffixed with white space characters.</para>
        </summary>
        <remarks>To be added.</remarks>
      </Docs>
      <Excluded>0</Excluded>
    </Member>
    <Member MemberName="Any">
      <MemberSignature Language="ILASM" Value=".field public static literal valuetype System.Globalization.NumberStyles Any = AllowLeadingWhite | AllowTrailingWhite | AllowLeadingSign | AllowTrailingSign | AllowParentheses | AllowDecimalPoint | AllowThousands | AllowExponent | AllowCurrencySymbol" />
      <MemberSignature Language="C#" Value="Any" />
      <MemberSignature Language="ILAsm" Value=".field public static literal valuetype System.Globalization.NumberStyles Any = int32(511)" />
      <MemberType>Field</MemberType>
      <AssemblyInfo>
        <AssemblyVersion>1.0.5000.0</AssemblyVersion>
        <AssemblyVersion>2.0.0.0</AssemblyVersion>
        <AssemblyVersion>4.0.0.0</AssemblyVersion>
      </AssemblyInfo>
      <ReturnValue>
        <ReturnType>System.Globalization.NumberStyles</ReturnType>
      </ReturnValue>
      <Parameters />
      <MemberValue>Any</MemberValue>
      <Docs>
        <summary>
          <para>Specifies that <see cref="F:System.Globalization.NumberStyles.AllowLeadingWhite" />, <see cref="F:System.Globalization.NumberStyles.AllowTrailingWhite" />, <see cref="F:System.Globalization.NumberStyles.AllowLeadingSign" />, <see cref="F:System.Globalization.NumberStyles.AllowTrailingSign" />, <see cref="F:System.Globalization.NumberStyles.AllowParentheses" />, <see cref="F:System.Globalization.NumberStyles.AllowDecimalPoint" />, <see cref="F:System.Globalization.NumberStyles.AllowThousands" />, <see cref="F:System.Globalization.NumberStyles.AllowCurrencySymbol" /> and <see cref="F:System.Globalization.NumberStyles.AllowExponent" /> styles are allowed.</para>
        </summary>
        <remarks>To be added.</remarks>
      </Docs>
      <Excluded>0</Excluded>
    </Member>
    <Member MemberName="Currency">
      <MemberSignature Language="ILASM" Value=".field public static literal valuetype System.Globalization.NumberStyles Currency = AllowLeadingWhite | AllowTrailingWhite | AllowLeadingSign | AllowTrailingSign | AllowParentheses | AllowDecimalPoint | AllowThousands | AllowCurrencySymbol" />
      <MemberSignature Language="C#" Value="Currency" />
      <MemberSignature Language="ILAsm" Value=".field public static literal valuetype System.Globalization.NumberStyles Currency = int32(383)" />
      <MemberType>Field</MemberType>
      <AssemblyInfo>
        <AssemblyVersion>1.0.5000.0</AssemblyVersion>
        <AssemblyVersion>2.0.0.0</AssemblyVersion>
        <AssemblyVersion>4.0.0.0</AssemblyVersion>
      </AssemblyInfo>
      <ReturnValue>
        <ReturnType>System.Globalization.NumberStyles</ReturnType>
      </ReturnValue>
      <Parameters />
      <MemberValue>Currency</MemberValue>
      <Docs>
        <summary>
          <para>Specifies that <see cref="F:System.Globalization.NumberStyles.AllowLeadingWhite" />, <see cref="F:System.Globalization.NumberStyles.AllowTrailingWhite" />, <see cref="F:System.Globalization.NumberStyles.AllowLeadingSign" />, <see cref="F:System.Globalization.NumberStyles.AllowTrailingSign" />, <see cref="F:System.Globalization.NumberStyles.AllowParentheses" />, <see cref="F:System.Globalization.NumberStyles.AllowDecimalPoint" />, <see cref="F:System.Globalization.NumberStyles.AllowThousands" />, and <see cref="F:System.Globalization.NumberStyles.AllowCurrencySymbol" /> styles are allowed.</para>
        </summary>
        <remarks>To be added.</remarks>
      </Docs>
      <Excluded>0</Excluded>
    </Member>
    <Member MemberName="Float">
      <MemberSignature Language="ILASM" Value=".field public static literal valuetype System.Globalization.NumberStyles Float = AllowLeadingWhite | AllowTrailingWhite | AllowLeadingSign | AllowDecimalPoint | AllowExponent" />
      <MemberSignature Language="C#" Value="Float" />
      <MemberSignature Language="ILAsm" Value=".field public static literal valuetype System.Globalization.NumberStyles Float = int32(167)" />
      <MemberType>Field</MemberType>
      <AssemblyInfo>
        <AssemblyVersion>1.0.5000.0</AssemblyVersion>
        <AssemblyVersion>2.0.0.0</AssemblyVersion>
        <AssemblyVersion>4.0.0.0</AssemblyVersion>
      </AssemblyInfo>
      <ReturnValue>
        <ReturnType>System.Globalization.NumberStyles</ReturnType>
      </ReturnValue>
      <Parameters />
      <MemberValue>Float</MemberValue>
      <Docs>
        <summary>
          <para>Specifies that <see cref="F:System.Globalization.NumberStyles.AllowLeadingWhite" />, <see cref="F:System.Globalization.NumberStyles.AllowTrailingWhite" />, <see cref="F:System.Globalization.NumberStyles.AllowLeadingSign" />, <see cref="F:System.Globalization.NumberStyles.AllowDecimalPoint" /> and <see cref="F:System.Globalization.NumberStyles.AllowExponent" /> styles are allowed.</para>
        </summary>
        <remarks>To be added.</remarks>
      </Docs>
      <Excluded>0</Excluded>
    </Member>
    <Member MemberName="HexNumber">
      <MemberSignature Language="ILASM" Value=".field public static literal valuetype System.Globalization.NumberStyles HexNumber = AllowLeadingWhite | AllowTrailingWhite | AllowHexSpecifier" />
      <MemberSignature Language="C#" Value="HexNumber" />
      <MemberSignature Language="ILAsm" Value=".field public static literal valuetype System.Globalization.NumberStyles HexNumber = int32(515)" />
      <MemberType>Field</MemberType>
      <AssemblyInfo>
        <AssemblyVersion>1.0.5000.0</AssemblyVersion>
        <AssemblyVersion>2.0.0.0</AssemblyVersion>
        <AssemblyVersion>4.0.0.0</AssemblyVersion>
      </AssemblyInfo>
      <ReturnValue>
        <ReturnType>System.Globalization.NumberStyles</ReturnType>
      </ReturnValue>
      <Parameters />
      <MemberValue>HexNumber</MemberValue>
      <Docs>
        <summary>
          <para>Specifies that <see cref="F:System.Globalization.NumberStyles.AllowLeadingWhite" />, <see cref="F:System.Globalization.NumberStyles.AllowTrailingWhite" />, <see cref="F:System.Globalization.NumberStyles.AllowHexSpecifier" /> styles are allowed.</para>
        </summary>
        <remarks>To be added.</remarks>
      </Docs>
      <Excluded>0</Excluded>
    </Member>
    <Member MemberName="Integer">
      <MemberSignature Language="ILASM" Value=".field public static literal valuetype System.Globalization.NumberStyles Integer = AllowLeadingWhite | AllowTrailingWhite | AllowLeadingSign" />
      <MemberSignature Language="C#" Value="Integer" />
      <MemberSignature Language="ILAsm" Value=".field public static literal valuetype System.Globalization.NumberStyles Integer = int32(7)" />
      <MemberType>Field</MemberType>
      <AssemblyInfo>
        <AssemblyVersion>1.0.5000.0</AssemblyVersion>
        <AssemblyVersion>2.0.0.0</AssemblyVersion>
        <AssemblyVersion>4.0.0.0</AssemblyVersion>
      </AssemblyInfo>
      <ReturnValue>
        <ReturnType>System.Globalization.NumberStyles</ReturnType>
      </ReturnValue>
      <Parameters />
      <MemberValue>Integer</MemberValue>
      <Docs>
        <summary>
          <para>Specifies that <see cref="F:System.Globalization.NumberStyles.AllowLeadingWhite" />, <see cref="F:System.Globalization.NumberStyles.AllowTrailingWhite" />, and <see cref="F:System.Globalization.NumberStyles.AllowLeadingSign" /> styles are allowed.</para>
        </summary>
        <remarks>To be added.</remarks>
      </Docs>
      <Excluded>0</Excluded>
    </Member>
    <Member MemberName="None">
      <MemberSignature Language="ILASM" Value=".field public static literal valuetype System.Globalization.NumberStyles None = 0x0" />
      <MemberSignature Language="C#" Value="None" />
      <MemberSignature Language="ILAsm" Value=".field public static literal valuetype System.Globalization.NumberStyles None = int32(0)" />
      <MemberType>Field</MemberType>
      <AssemblyInfo>
        <AssemblyVersion>1.0.5000.0</AssemblyVersion>
        <AssemblyVersion>2.0.0.0</AssemblyVersion>
        <AssemblyVersion>4.0.0.0</AssemblyVersion>
      </AssemblyInfo>
      <ReturnValue>
        <ReturnType>System.Globalization.NumberStyles</ReturnType>
      </ReturnValue>
      <Parameters />
      <MemberValue>None</MemberValue>
      <Docs>
        <summary>
          <para>Specifies that no styles are allowed.</para>
        </summary>
        <remarks>To be added.</remarks>
      </Docs>
      <Excluded>0</Excluded>
    </Member>
    <Member MemberName="Number">
      <MemberSignature Language="ILASM" Value=".field public static literal valuetype System.Globalization.NumberStyles Number = AllowLeadingWhite | AllowTrailingWhite | AllowLeadingSign | AllowTrailingSign | AllowDecimalPoint | AllowThousands" />
      <MemberSignature Language="C#" Value="Number" />
      <MemberSignature Language="ILAsm" Value=".field public static literal valuetype System.Globalization.NumberStyles Number = int32(111)" />
      <MemberType>Field</MemberType>
      <AssemblyInfo>
        <AssemblyVersion>1.0.5000.0</AssemblyVersion>
        <AssemblyVersion>2.0.0.0</AssemblyVersion>
        <AssemblyVersion>4.0.0.0</AssemblyVersion>
      </AssemblyInfo>
      <ReturnValue>
        <ReturnType>System.Globalization.NumberStyles</ReturnType>
      </ReturnValue>
      <Parameters />
      <MemberValue>Number</MemberValue>
      <Docs>
        <summary>
          <para>Specifies that <see cref="F:System.Globalization.NumberStyles.AllowLeadingWhite" />, <see cref="F:System.Globalization.NumberStyles.AllowTrailingWhite" />, <see cref="F:System.Globalization.NumberStyles.AllowLeadingSign" />, <see cref="F:System.Globalization.NumberStyles.AllowTrailingSign" />, <see cref="F:System.Globalization.NumberStyles.AllowDecimalPoint" /> and <see cref="F:System.Globalization.NumberStyles.AllowThousands" /> styles are allowed.</para>
        </summary>
        <remarks>To be added.</remarks>
      </Docs>
      <Excluded>0</Excluded>
    </Member>
  </Members>
  <TypeExcluded>0</TypeExcluded>
</Type>
