Click here to Skip to main content
15,882,063 members
Home / Discussions / C#
   

C#

 
GeneralRe: C# listbox Pin
Member 1373977821-Mar-18 18:01
Member 1373977821-Mar-18 18:01 
GeneralRe: C# listbox Pin
BillWoodruff21-Mar-18 18:36
professionalBillWoodruff21-Mar-18 18:36 
GeneralRe: C# listbox Pin
Richard MacCutchan21-Mar-18 22:30
mveRichard MacCutchan21-Mar-18 22:30 
AnswerRe: C# listbox Pin
Gerry Schmitz22-Mar-18 8:48
mveGerry Schmitz22-Mar-18 8:48 
QuestionBuilding Biometeric Application Pin
Member 1351208221-Mar-18 5:37
Member 1351208221-Mar-18 5:37 
AnswerRe: Building Biometeric Application Pin
OriginalGriff21-Mar-18 6:47
mveOriginalGriff21-Mar-18 6:47 
AnswerRe: Building Biometeric Application Pin
Gerry Schmitz22-Mar-18 6:15
mveGerry Schmitz22-Mar-18 6:15 
Questiongeneralizing a function to operate on any type with operator * defined Pin
Alexander Kindel20-Mar-18 13:16
Alexander Kindel20-Mar-18 13:16 
I have an integerExponentiate() function that operates on two objects of like type, and relies only on the fact that the type implements the * operator and has an instance that represents the mathematical concept of a unit. I have several classes that meet those criteria, and would like it to be possible for integerExponentiate() to be called on instances of any of those classes. My first thought was to make integerExponentiate() a generic method that takes the unit and a delegate representing the multiplication operator as parameters, something like this:
delegate T multiplier<T>(T a, T b);
T integerExponentiate<T>(multiplier<T> m, T unit, T expBase, Integer exponent);

But I don't see a way to assign an operator to a delegate. Is there a way to do that directly, or do I have to wrap the operator in another function and use that? Or should I consider another approach entirely?
AnswerRe: generalizing a function to operate on any type with operator * defined Pin
Alexander Kindel20-Mar-18 14:52
Alexander Kindel20-Mar-18 14:52 
AnswerRe: generalizing a function to operate on any type with operator * defined Pin
BillWoodruff21-Mar-18 18:34
professionalBillWoodruff21-Mar-18 18:34 
QuestionMessage Removed Pin
20-Mar-18 3:37
Member 1373673020-Mar-18 3:37 
Questioni want to create a chat application without the need of a server Pin
Ma Lek20-Mar-18 0:09
Ma Lek20-Mar-18 0:09 
AnswerRe: i want to create a chat application without the need of a server Pin
OriginalGriff20-Mar-18 0:26
mveOriginalGriff20-Mar-18 0:26 
GeneralRe: i want to create a chat application without the need of a server Pin
Ma Lek20-Mar-18 1:32
Ma Lek20-Mar-18 1:32 
SuggestionRe: i want to create a chat application without the need of a server Pin
Ralf Meier20-Mar-18 1:43
mveRalf Meier20-Mar-18 1:43 
GeneralRe: i want to create a chat application without the need of a server Pin
OriginalGriff20-Mar-18 1:44
mveOriginalGriff20-Mar-18 1:44 
AnswerRe: i want to create a chat application without the need of a server Pin
Ralf Meier20-Mar-18 1:40
mveRalf Meier20-Mar-18 1:40 
AnswerRe: i want to create a chat application without the need of a server Pin
Kevin Marois20-Mar-18 7:14
professionalKevin Marois20-Mar-18 7:14 
AnswerRe: i want to create a chat application without the need of a server Pin
MadMyche20-Mar-18 8:47
professionalMadMyche20-Mar-18 8:47 
QuestionSending byte to comport Pin
Iftikhar_Ahmed19-Mar-18 7:13
Iftikhar_Ahmed19-Mar-18 7:13 
AnswerRe: Sending byte to comport Pin
Richard MacCutchan19-Mar-18 9:38
mveRichard MacCutchan19-Mar-18 9:38 
QuestionHow to build a PDF maker program at C# Pin
User 1367511418-Mar-18 5:44
User 1367511418-Mar-18 5:44 
AnswerRe: How to build a PDF maker program at C# Pin
Richard MacCutchan18-Mar-18 5:48
mveRichard MacCutchan18-Mar-18 5:48 
AnswerRe: How to build a PDF maker program at C# Pin
Gerry Schmitz18-Mar-18 8:01
mveGerry Schmitz18-Mar-18 8:01 
GeneralRe: How to build a PDF maker program at C# Pin
User 1367511419-Mar-18 0:19
User 1367511419-Mar-18 0:19 

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.