using System;
public class Program
{
public static void Main()
decimal value = 6.744397m;
decimal roundedValue = Math.Round(value, 2, MidpointRounding.AwayFromZero);
Console.WriteLine($"Value {value} rounded to two decimals is {roundedValue}");
}