Click here to Skip to main content
15,915,867 members
Home / Discussions / C#
   

C#

 
AnswerRe: database path Pin
Not Active14-Apr-11 10:03
mentorNot Active14-Apr-11 10:03 
GeneralRe: database path Pin
arkiboys14-Apr-11 10:50
arkiboys14-Apr-11 10:50 
GeneralRe: database path Pin
Not Active14-Apr-11 11:40
mentorNot Active14-Apr-11 11:40 
GeneralRe: database path Pin
arkiboys14-Apr-11 20:26
arkiboys14-Apr-11 20:26 
GeneralRe: database path Pin
Pravin Patil, Mumbai15-Apr-11 0:45
Pravin Patil, Mumbai15-Apr-11 0:45 
GeneralRe: database path Pin
Dave Kreskowiak15-Apr-11 1:54
mveDave Kreskowiak15-Apr-11 1:54 
AnswerRe: database path Pin
Prasanta_Prince15-Apr-11 8:15
Prasanta_Prince15-Apr-11 8:15 
GeneralRe: database path Pin
arkiboys15-Apr-11 10:21
arkiboys15-Apr-11 10:21 
Questionbeginner question Pin
ace30014-Apr-11 7:16
ace30014-Apr-11 7:16 
AnswerRe: beginner question Pin
gavindon14-Apr-11 9:08
gavindon14-Apr-11 9:08 
AnswerRe: beginner question Pin
BobJanova14-Apr-11 22:53
BobJanova14-Apr-11 22:53 
AnswerRe: beginner question Pin
Prasanta_Prince15-Apr-11 6:30
Prasanta_Prince15-Apr-11 6:30 
Questionvarchar(max) in database - how to put the size in ADO.NET Pin
Member 779716714-Apr-11 5:54
Member 779716714-Apr-11 5:54 
AnswerRe: varchar(max) in database - how to put the size in ADO.NET Pin
Ennis Ray Lynch, Jr.14-Apr-11 7:24
Ennis Ray Lynch, Jr.14-Apr-11 7:24 
GeneralRe: varchar(max) in database - how to put the size in ADO.NET Pin
Member 779716714-Apr-11 8:46
Member 779716714-Apr-11 8:46 
GeneralRe: varchar(max) in database - how to put the size in ADO.NET Pin
jschell14-Apr-11 9:38
jschell14-Apr-11 9:38 
GeneralRe: varchar(max) in database - how to put the size in ADO.NET Pin
Ennis Ray Lynch, Jr.14-Apr-11 9:52
Ennis Ray Lynch, Jr.14-Apr-11 9:52 
GeneralRe: varchar(max) in database - how to put the size in ADO.NET Pin
Prasanta_Prince15-Apr-11 6:32
Prasanta_Prince15-Apr-11 6:32 
AnswerRe: varchar(max) in database - how to put the size in ADO.NET Pin
jschell14-Apr-11 9:41
jschell14-Apr-11 9:41 
QuestionC# very basic basic` Pin
daveThawley14-Apr-11 2:29
daveThawley14-Apr-11 2:29 
AnswerRe: C# very basic basic` Pin
Wayne Gaylard14-Apr-11 2:47
professionalWayne Gaylard14-Apr-11 2:47 
GeneralRe: C# very basic basic` Pin
fjdiewornncalwe14-Apr-11 3:08
professionalfjdiewornncalwe14-Apr-11 3:08 
AnswerRe: C# very basic basic` PinPopular
Richard MacCutchan14-Apr-11 2:50
mveRichard MacCutchan14-Apr-11 2:50 
AnswerRe: C# very basic basic` Pin
PIEBALDconsult14-Apr-11 2:51
mvePIEBALDconsult14-Apr-11 2:51 
AnswerRe: C# very basic basic` Pin
V.14-Apr-11 4:06
professionalV.14-Apr-11 4:06 
A class is not equal to an object, but rather a template from which you can create multiple objects.

In this case you use object A's method to compare it with object B, both A and B are instances from the same class.

so if you use the compare method of Object A and pass it a parameter object B, both have the same properties.


maybe it makes more sense if you create (just for tests) a class C that has something like this:
public bool CompareObjects(ClassInstance A, ClassInstance B){
  bool success = false;
  if(A.x == B.x and A.y == B.y){
    success = true;
  }
  return true;
}

in this sample you see that A and B are both objects instanciated by the ClassInstance class.

Hope this helps.
V.

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.