using System;
public class Program
{
public static void Main()
// Your decimal value
Decimal d = 1048.027821000m;;
// Format using the numeric "6" string (to indicate 6 digits after the decimal)
Console.WriteLine(d.ToString("F6")); // yields "1048.027821"
}