Click here to Skip to main content
15,888,733 members
Home / Discussions / C#
   

C#

 
AnswerRe: Game Pin
Chris Quinn8-Jan-18 21:26
Chris Quinn8-Jan-18 21:26 
AnswerRe: Game Pin
V.9-Jan-18 21:55
professionalV.9-Jan-18 21:55 
QuestionQuestion About Async/Await Pin
Kevin Marois8-Jan-18 6:46
professionalKevin Marois8-Jan-18 6:46 
AnswerRe: Question About Async/Await Pin
Alex Schunk8-Jan-18 7:00
Alex Schunk8-Jan-18 7:00 
GeneralRe: Question About Async/Await Pin
Kevin Marois8-Jan-18 8:13
professionalKevin Marois8-Jan-18 8:13 
GeneralRe: Question About Async/Await Pin
Alex Schunk8-Jan-18 8:21
Alex Schunk8-Jan-18 8:21 
GeneralRe: Question About Async/Await Pin
Kevin Marois8-Jan-18 9:45
professionalKevin Marois8-Jan-18 9:45 
GeneralRe: Question About Async/Await Pin
Alex Schunk8-Jan-18 9:55
Alex Schunk8-Jan-18 9:55 
AnswerRe: Question About Async/Await Pin
Dave Kreskowiak8-Jan-18 8:39
mveDave Kreskowiak8-Jan-18 8:39 
GeneralRe: Question About Async/Await Pin
Kevin Marois8-Jan-18 9:44
professionalKevin Marois8-Jan-18 9:44 
AnswerRe: Question About Async/Await Pin
Gerry Schmitz10-Jan-18 8:34
mveGerry Schmitz10-Jan-18 8:34 
QuestionToggle button in a datatemplate with command binding using MVVM design approach Pin
Hervend7-Jan-18 16:17
Hervend7-Jan-18 16:17 
AnswerRe: Toggle button in a datatemplate with command binding using MVVM design approach Pin
Kenneth Haugland7-Jan-18 17:32
mvaKenneth Haugland7-Jan-18 17:32 
GeneralRe: Toggle button in a datatemplate with command binding using MVVM design approach Pin
Hervend8-Jan-18 0:04
Hervend8-Jan-18 0:04 
GeneralRe: Toggle button in a datatemplate with command binding using MVVM design approach Pin
Kenneth Haugland8-Jan-18 1:08
mvaKenneth Haugland8-Jan-18 1:08 
Questionhow to get alert while working in c# windows application Pin
Member 30804705-Jan-18 23:07
Member 30804705-Jan-18 23:07 
AnswerRe: how to get alert while working in c# windows application Pin
OriginalGriff6-Jan-18 0:55
mveOriginalGriff6-Jan-18 0:55 
AnswerRe: how to get alert while working in c# windows application Pin
BillWoodruff6-Jan-18 2:53
professionalBillWoodruff6-Jan-18 2:53 
AnswerRe: how to get alert while working in c# windows application Pin
Gerry Schmitz6-Jan-18 7:28
mveGerry Schmitz6-Jan-18 7:28 
Questionextending a special case of a generic type Pin
Alexander Kindel5-Jan-18 22:10
Alexander Kindel5-Jan-18 22:10 
GeneralRe: extending a special case of a generic type Pin
harold aptroot5-Jan-18 22:38
harold aptroot5-Jan-18 22:38 
If IntegerPolynomial overloads the operator+ too, then the problem of them adding to a "less useful type" is solved. It can pass-through the implementation, it just has to convert back to an IntegerPolynomial in the end.

Which leads me to: you can cast them, just not by a "free" type change. A Polynomial<Integer> isn't an IntegerPolynomial so you can't take an instance of it and change the type, but you can add a conversion operator to IntegerPolynomial so that it can be created out of a Polynomial<Integer> (creating a new instance with the same contents). Though this requires that Polynomial<Integer> is not the base class of IntegerPolynomial, so it's a bit annoying. Basically it trades being able to convert "for free" and code-sharing for the ability to convert in any direction.

GeneralRe: extending a special case of a generic type Pin
Alexander Kindel5-Jan-18 23:09
Alexander Kindel5-Jan-18 23:09 
GeneralRe: extending a special case of a generic type Pin
harold aptroot5-Jan-18 23:34
harold aptroot5-Jan-18 23:34 
GeneralRe: extending a special case of a generic type Pin
Alexander Kindel5-Jan-18 23:37
Alexander Kindel5-Jan-18 23:37 
GeneralRe: extending a special case of a generic type Pin
Alexander Kindel6-Jan-18 2:39
Alexander Kindel6-Jan-18 2:39 

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.