Custom numeric format strings:;(Section)

SpecifierMeaning
;Section separator

using System;
using System.Text;
using System.Globalization;
class Sample
{
    public static void Main()
    {
        Console.WriteLine("{0:#;(#);zero}", 1000);
        Console.WriteLine("{0:#;(#);zero}", -5);

    }
}

The output:


1000
(5)
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.