How can you set a default input value in a .net console app?
Here is some make-believe code:
Console.Write("Enter weekly cost: "); string inp
You can use helper method like this:
public static string ReadWithDefaults(string defaultValue) { string str = Console.ReadLine(); return String.IsNullOrEmpty(str) ? defaultValue : str; }