Channel.cs
changeset 1 f203331a8f4a
parent 0 1d4344872495
child 3 01a00603ec28
     1.1 --- a/Channel.cs	Thu May 14 22:43:17 2015 +0200
     1.2 +++ b/Channel.cs	Fri May 15 13:23:52 2015 +0200
     1.3 @@ -10,6 +10,9 @@
     1.4  {
     1.5  	class Channel
     1.6  	{
     1.7 +		//Sky Atlantic HD
     1.8 +		public string Name { get; set; }
     1.9 +		//------------------------------------------------------
    1.10  		//19.2E
    1.11  		public string OrbitalPosition { get; set; }
    1.12  		//Astra 1M
    1.13 @@ -39,8 +42,6 @@
    1.14  		//1053
    1.15  		public string TransponderID { get; set; }
    1.16  		//------------------------------------------------------
    1.17 -		//Sky Atlantic HD
    1.18 -		public string Name { get; set; }
    1.19  		//Germany
    1.20  		public string Country { get; set; }
    1.21  		//Entertainment
    1.22 @@ -65,7 +66,7 @@
    1.23  		//////
    1.24  		public override string ToString()
    1.25  		{
    1.26 -			string res = "";
    1.27 +			string res = "============[Channel]============\n";
    1.28  			PropertyInfo[] properties = typeof(Channel).GetProperties();
    1.29  			foreach (PropertyInfo property in properties)
    1.30  			{