Click here to Skip to main content
15,885,537 members
Home / Discussions / C#
   

C#

 
AnswerRe: read value from item array in user control Pin
Gerry Schmitz25-Jul-14 11:19
mveGerry Schmitz25-Jul-14 11:19 
GeneralRe: read value from item array in user control Pin
Jassim Rahma25-Jul-14 12:42
Jassim Rahma25-Jul-14 12:42 
GeneralRe: read value from item array in user control Pin
Gerry Schmitz25-Jul-14 14:09
mveGerry Schmitz25-Jul-14 14:09 
GeneralRe: read value from item array in user control Pin
Jassim Rahma25-Jul-14 14:34
Jassim Rahma25-Jul-14 14:34 
GeneralRe: read value from item array in user control Pin
Gerry Schmitz25-Jul-14 15:01
mveGerry Schmitz25-Jul-14 15:01 
AnswerRe: read value from item array in user control Pin
KUMAR61927-Jul-14 20:54
professionalKUMAR61927-Jul-14 20:54 
AnswerRe: read value from item array in user control Pin
User 873938131-Jul-14 0:02
User 873938131-Jul-14 0:02 
QuestionComparison Overloading Pin
Rig Maitra25-Jul-14 6:14
Rig Maitra25-Jul-14 6:14 
Hi, I have made a program to compare the pages of 2 books using the overloading concept. But i m not sure that is correct or not. Please see my code and tell me whether my program is logically correct or not based on the concept..

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace comp
{
class book1
{

public int page1;



}
class book2:book1
{

public int page2;

public book2(int p1 ,int p2)
{

page1 = p1;
page2 = p2;
}


public static bool operator <(book2 b1, book2 b2) // overloading
{
if (b1.page1 < b2.page2)
return (true);
else
return (false);
}

public static bool operator >(book2 b1, book2 b2)
{
if (b1.page1 > b2.page2)
return (true);

else
return (false);
}

}





class Program
{
static void Main(string[] args)
{

book2 b2 = new book2(5,10); // passing parameters



if (b1.page1 < b2.page2)

{
Console.WriteLine("book 1 has less pages than book 2");
}

else if (b1.page1 > b2.page2)
{
Console.WriteLine("book1 has more pages than book 2");
}

Console.ReadLine();


}
}
}
AnswerRe: Comparison Overloading Pin
Rob Philpott25-Jul-14 6:23
Rob Philpott25-Jul-14 6:23 
GeneralRe: Comparison Overloading Pin
Rig Maitra25-Jul-14 6:29
Rig Maitra25-Jul-14 6:29 
GeneralRe: Comparison Overloading Pin
Rob Philpott25-Jul-14 6:43
Rob Philpott25-Jul-14 6:43 
GeneralRe: Comparison Overloading Pin
OriginalGriff25-Jul-14 8:50
mveOriginalGriff25-Jul-14 8:50 
AnswerRe: Comparison Overloading Pin
KUMAR61928-Jul-14 17:53
professionalKUMAR61928-Jul-14 17:53 
QuestionC# how to compare the old product(serialized) to new product,If same product means add the quantity only not repeated that product in output for below program Pin
Member 1097120125-Jul-14 3:22
Member 1097120125-Jul-14 3:22 
AnswerRe: C# how to compare the old product... Pin
OriginalGriff25-Jul-14 4:35
mveOriginalGriff25-Jul-14 4:35 
QuestionEntity Framework Pin
Steve Foutty25-Jul-14 3:14
Steve Foutty25-Jul-14 3:14 
AnswerRe: Entity Framework Pin
Gerry Schmitz25-Jul-14 11:30
mveGerry Schmitz25-Jul-14 11:30 
GeneralRe: Entity Framework Pin
Steve Foutty25-Jul-14 13:46
Steve Foutty25-Jul-14 13:46 
GeneralRe: Entity Framework Pin
Gerry Schmitz25-Jul-14 14:03
mveGerry Schmitz25-Jul-14 14:03 
QuestionList Pin
Steve Foutty24-Jul-14 15:45
Steve Foutty24-Jul-14 15:45 
AnswerRe: List Pin
Rob Philpott24-Jul-14 20:13
Rob Philpott24-Jul-14 20:13 
AnswerRe: List Pin
Mycroft Holmes24-Jul-14 22:26
professionalMycroft Holmes24-Jul-14 22:26 
GeneralRe: List Pin
Rob Philpott24-Jul-14 23:00
Rob Philpott24-Jul-14 23:00 
GeneralRe: List Pin
PIEBALDconsult25-Jul-14 20:24
mvePIEBALDconsult25-Jul-14 20:24 
AnswerRe: List Pin
Dave Kreskowiak25-Jul-14 2:24
mveDave Kreskowiak25-Jul-14 2:24 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.