4 writes to NumberGroupSizes
Microsoft.VisualBasic.Core (1)
Microsoft\VisualBasic\Strings.vb (1)
1651nfi.NumberGroupSizes = nfi.CurrencyGroupSizes
System.Private.Xml (3)
System\Xml\Xsl\Runtime\DecimalFormatter.cs (2)
114_posFormatInfo.NumberGroupSizes = new int[] { groupingSize }; 204formatInfo.NumberGroupSizes = new int[] { groupingSize };
System\Xml\Xsl\XsltOld\NumberAction.cs (1)
120NumberFormat.NumberGroupSizes = new int[] { groupSize };
10 references to NumberGroupSizes
Microsoft.VisualBasic.Core (9)
Microsoft\VisualBasic\Strings.vb (9)
1503If IsArrayEmpty(nfi.NumberGroupSizes) Then 1711If nfi.NumberGroupSizes Is Nothing OrElse nfi.NumberGroupSizes.Length = 0 Then 1763If GroupDigits = TriState.False OrElse nfi.NumberGroupSizes.Length = 0 Then 1766If nfi.NumberGroupSizes.Length = 1 Then 1767NumberFormat = "#," & New String("#"c, nfi.NumberGroupSizes(0)) & NumberFormat 1771NumberFormat = New String("#"c, nfi.NumberGroupSizes(0) - 1) & NumberFormat 1772For i = 1 To nfi.NumberGroupSizes.GetUpperBound(0) 1773NumberFormat = "," & New String("#"c, nfi.NumberGroupSizes(i)) & "," & NumberFormat
System.Runtime.Numerics (1)
src\libraries\Common\src\System\Number.Formatting.Common.cs (1)
1186private static int[] NumberGroupSizes(this NumberFormatInfo info) => info.NumberGroupSizes;