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

C#

 
QuestionSURF and flann to image retrieval in emgu CV Pin
Member 136054434-Jan-18 3:05
Member 136054434-Jan-18 3:05 
AnswerRe: SURF and flann to image retrieval in emgu CV Pin
Richard MacCutchan4-Jan-18 3:37
mveRichard MacCutchan4-Jan-18 3:37 
GeneralRe: SURF and flann to image retrieval in emgu CV Pin
Member 136054437-Jan-18 22:37
Member 136054437-Jan-18 22:37 
AnswerRe: SURF and flann to image retrieval in emgu CV Pin
Pete O'Hanlon4-Jan-18 5:20
mvePete O'Hanlon4-Jan-18 5:20 
GeneralRe: SURF and flann to image retrieval in emgu CV Pin
V.4-Jan-18 18:51
professionalV.4-Jan-18 18:51 
GeneralRe: SURF and flann to image retrieval in emgu CV Pin
Member 136054437-Jan-18 22:36
Member 136054437-Jan-18 22:36 
QuestionBAL,DAL Pin
Member 136064294-Jan-18 0:38
Member 136064294-Jan-18 0:38 
AnswerRe: BAL,DAL Pin
OriginalGriff4-Jan-18 1:00
mveOriginalGriff4-Jan-18 1:00 
AnswerRe: BAL,DAL Pin
Gerry Schmitz4-Jan-18 10:42
mveGerry Schmitz4-Jan-18 10:42 
GeneralRe: BAL,DAL Pin
Member 136064294-Jan-18 19:20
Member 136064294-Jan-18 19:20 
QuestionEntity Framework Query Problem Pin
Kevin Marois3-Jan-18 18:38
professionalKevin Marois3-Jan-18 18:38 
AnswerRe: Entity Framework Query Problem Pin
Vincent Maverick Durano3-Jan-18 19:59
professionalVincent Maverick Durano3-Jan-18 19:59 
QuestionBlink an image in wpf c# Pin
Hervend2-Jan-18 23:01
Hervend2-Jan-18 23:01 
AnswerRe: Blink an image in wpf c# Pin
Pete O'Hanlon2-Jan-18 23:07
mvePete O'Hanlon2-Jan-18 23:07 
AnswerRe: Blink an image in wpf c# Pin
Eddy Vluggen3-Jan-18 2:37
professionalEddy Vluggen3-Jan-18 2:37 
AnswerRe: Blink an image in wpf c# Pin
Gerry Schmitz3-Jan-18 5:35
mveGerry Schmitz3-Jan-18 5:35 
QuestionIs it wrong to pass an object into a method, change something and then pass it back to the caller? Pin
User987432-Jan-18 22:15
professionalUser987432-Jan-18 22:15 
AnswerRe: Is it wrong to pass an object into a method, change something and then pass it back to the caller? Pin
Pete O'Hanlon2-Jan-18 22:20
mvePete O'Hanlon2-Jan-18 22:20 
GeneralRe: Is it wrong to pass an object into a method, change something and then pass it back to the caller? Pin
User987432-Jan-18 23:06
professionalUser987432-Jan-18 23:06 
AnswerRe: Is it wrong to pass an object into a method, change something and then pass it back to the caller? Pin
OriginalGriff2-Jan-18 22:45
mveOriginalGriff2-Jan-18 22:45 
GeneralRe: Is it wrong to pass an object into a method, change something and then pass it back to the caller? Pin
User987432-Jan-18 23:06
professionalUser987432-Jan-18 23:06 
GeneralRe: Is it wrong to pass an object into a method, change something and then pass it back to the caller? Pin
Marc Clifton6-Jan-18 4:19
mvaMarc Clifton6-Jan-18 4:19 
AnswerRe: Is it wrong to pass an object into a method, change something and then pass it back to the caller? Pin
BillWoodruff4-Jan-18 23:07
professionalBillWoodruff4-Jan-18 23:07 
GeneralRe: Is it wrong to pass an object into a method, change something and then pass it back to the caller? Pin
User987435-Jan-18 13:18
professionalUser987435-Jan-18 13:18 
GeneralRe: Is it wrong to pass an object into a method, change something and then pass it back to the caller? Pin
BillWoodruff5-Jan-18 21:13
professionalBillWoodruff5-Jan-18 21:13 
@Rick_Bishop @Marc-Clifton

Hi Rick,

If you do get into the "functional programming" thing, as in F#, you will have reasons, imho, to think about the issue of "immutability" ... F# enforces that strictly.

Marc Clifton's recent articles here that demonstrate FP approaches with C# are very interesting.

I am inclined, now, to do without 'ref and 'out, and make my classes as immutable as possible using 'get only Properties, etc. You can see this in the second extension method above named 'Clone.

With a very complex Class, copying all the field/property values into a new object might be very expensive; in that case, is the Class "more immutable" if there is a specific method that modifies one or more class instance members values ? Not yet sure on that one.

In any case, I think it imperative to think carefully about when, how, and where, any Class instance may be modified.

cheers, Bill
«... thank the gods that they have made you superior to those events which they have not placed within your own control, rendered you accountable for that only which is within you own control For what, then, have they made you responsible? For that which is alone in your own power—a right use of things as they appear.» Discourses of Epictetus Book I:12

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.