I'm asking because I want to learn to write code using good habits early.
Thanks
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace ConsoleApplication1
{
class Program
{
static void Main(string[] args)
{
Copyright getCopywright = new Copyright();
getCopywright.CopywrightInfo();
}
class Copyright
{
int startYear = 2010; //Initialize startYear field
public void CopywrightInfo()
{
//Conditional block to determine if the start year and current year are the same
if (startYear < DateTime.Now.Year)
{
Console.WriteLine("Copywright {0} - {1}", this.startYear, DateTime.Now.Year);
}
else
{
Console.WriteLine("Copywright {0} ", this.startYear);
}
Console.Read();
}
}
}
}


Sign In
Create Account

Back to top









