Click here to Skip to main content
15,883,705 members
Home / Discussions / C#
   

C#

 
AnswerRe: i want send output data into pdf fromate Pin
Christian Graus20-Oct-09 23:57
protectorChristian Graus20-Oct-09 23:57 
GeneralRe: i want send output data into pdf fromate Pin
V.21-Oct-09 0:20
professionalV.21-Oct-09 0:20 
AnswerRe: i want send output data into pdf fromate Pin
Tom Deketelaere21-Oct-09 0:08
professionalTom Deketelaere21-Oct-09 0:08 
AnswerRe: i want send output data into pdf fromate Pin
DaveyM6921-Oct-09 0:11
professionalDaveyM6921-Oct-09 0:11 
QuestionWHY THIS CODE RETURNS ERROR Pin
RINSON VARGHESE20-Oct-09 23:54
RINSON VARGHESE20-Oct-09 23:54 
AnswerRe: WHY THIS CODE RETURNS ERROR Pin
Christian Graus21-Oct-09 0:00
protectorChristian Graus21-Oct-09 0:00 
GeneralRe: WHY THIS CODE RETURNS ERROR Pin
RINSON VARGHESE21-Oct-09 0:11
RINSON VARGHESE21-Oct-09 0:11 
AnswerRe: WHY THIS CODE RETURNS ERROR Pin
DaveyM6921-Oct-09 0:36
professionalDaveyM6921-Oct-09 0:36 
The reason is not everything implements the == operator. All classes (reference types) do, but not all structs (value type) do. If you know that T is always going to be a class then you can use
C#
public class Comparer<T> where T: class
{
    // ...
}
and your code will work.

All objects implement Equals(object obj) so you can use o1.Equals(o2), but it may not give the result you expect depending on the struct's/class' implementation of this method.

Dave

Generic BackgroundWorker - My latest article!
BTW, in software, hope and pray is not a viable strategy. (Luc Pattyn)
Why are you using VB6? Do you hate yourself? (Christian Graus)

Questioncustom headers in email Pin
nirmalsat20-Oct-09 23:47
nirmalsat20-Oct-09 23:47 
AnswerRe: custom headers in email Pin
Christian Graus21-Oct-09 0:00
protectorChristian Graus21-Oct-09 0:00 
GeneralRe: custom headers in email Pin
J4amieC21-Oct-09 0:09
J4amieC21-Oct-09 0:09 
GeneralRe: custom headers in email Pin
Eddy Vluggen21-Oct-09 0:10
professionalEddy Vluggen21-Oct-09 0:10 
AnswerRe: custom headers in email Pin
J4amieC21-Oct-09 0:10
J4amieC21-Oct-09 0:10 
GeneralRe: custom headers in email Pin
nirmalsat21-Oct-09 19:38
nirmalsat21-Oct-09 19:38 
QuestionSuggestion about a data structure Pin
Siddhartha S.20-Oct-09 23:45
Siddhartha S.20-Oct-09 23:45 
AnswerRe: Suggestion about a data structure Pin
Luc Pattyn21-Oct-09 2:40
sitebuilderLuc Pattyn21-Oct-09 2:40 
GeneralRe: Suggestion about a data structure Pin
Siddhartha S.21-Oct-09 2:45
Siddhartha S.21-Oct-09 2:45 
GeneralRe: Suggestion about a data structure Pin
Luc Pattyn21-Oct-09 2:53
sitebuilderLuc Pattyn21-Oct-09 2:53 
GeneralRe: Suggestion about a data structure Pin
Siddhartha S.21-Oct-09 2:55
Siddhartha S.21-Oct-09 2:55 
QuestionWindows Identity of the currently logged in user Pin
ramz_g20-Oct-09 22:23
ramz_g20-Oct-09 22:23 
AnswerRe: Windows Identity of the currently logged in user Pin
stancrm20-Oct-09 22:31
stancrm20-Oct-09 22:31 
GeneralRe: Windows Identity of the currently logged in user Pin
ramz_g20-Oct-09 23:11
ramz_g20-Oct-09 23:11 
AnswerRe: Windows Identity of the currently logged in user Pin
Eddy Vluggen20-Oct-09 23:40
professionalEddy Vluggen20-Oct-09 23:40 
GeneralRe: Windows Identity of the currently logged in user Pin
ramz_g21-Oct-09 2:05
ramz_g21-Oct-09 2:05 
GeneralRe: Windows Identity of the currently logged in user Pin
Eddy Vluggen21-Oct-09 3:18
professionalEddy Vluggen21-Oct-09 3:18 

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.