System.Xml.Xsl.Runtime.XsltFunctions.PrintMsec C# (CSharp) Method

PrintMsec() private static method

private static PrintMsec ( char text, int value ) : void
text char
value int
return void
        private static void PrintMsec(char[] text, int value)
        {
            if (value == 0)
            {
                return;
            }
            text[20] = (char)((value / 100) % 10 + '0');
            text[21] = (char)((value / 10) % 10 + '0');
            text[22] = (char)((value / 1) % 10 + '0');
        }