public static void Main()
Console.WriteLine("start");
Console.WriteLine(BlankOrNonZeroToShow(orgs[0]));
Console.WriteLine("finish");
private static string BlankOrNonZeroToShow(string value)
return string.IsNullOrEmpty(value) ? string.Empty : decimal.Parse(value) != 0.00M ? value : string.Empty;