Is it good practice to shorten functions? Like this code for instance:
using System;
namespace Hello
{
class Program
{
public static void Main(String[] args)
{
Write("Hello, World!");
Stagger();
}
public static void Write(string s)
{
Console.WriteLine(s);
}
public static void Stagger()
{
Console.ReadLine();
}
}
}
I get lazy and do stuff like that a lot. But is it proper?