The following code creates a NumberFormatInfo from current cultrue by clone() method.
using System;
using System.Text;
using System.Globalization;
class Sample
{
public static void Main()
{
NumberFormatInfo f = (NumberFormatInfo)CultureInfo.CurrentCulture.NumberFormat.Clone();
}
}