Click here to Skip to main content
15,897,371 members
Home / Discussions / C#
   

C#

 
GeneralRe: Does this ensure function1 and function2 use my class in thread safe way? Pin
PIEBALDconsult5-Feb-16 15:00
mvePIEBALDconsult5-Feb-16 15:00 
GeneralRe: Does this ensure function1 and function2 use my class in thread safe way? Pin
Gerry Schmitz5-Feb-16 15:50
mveGerry Schmitz5-Feb-16 15:50 
GeneralRe: Does this ensure function1 and function2 use my class in thread safe way? Pin
PIEBALDconsult5-Feb-16 15:53
mvePIEBALDconsult5-Feb-16 15:53 
GeneralRe: Does this ensure function1 and function2 use my class in thread safe way? Pin
Gerry Schmitz5-Feb-16 16:13
mveGerry Schmitz5-Feb-16 16:13 
GeneralRe: Does this ensure function1 and function2 use my class in thread safe way? Pin
PIEBALDconsult5-Feb-16 16:35
mvePIEBALDconsult5-Feb-16 16:35 
GeneralRe: Does this ensure function1 and function2 use my class in thread safe way? Pin
Gerry Schmitz5-Feb-16 16:41
mveGerry Schmitz5-Feb-16 16:41 
GeneralRe: Does this ensure function1 and function2 use my class in thread safe way? Pin
PIEBALDconsult5-Feb-16 16:45
mvePIEBALDconsult5-Feb-16 16:45 
GeneralRe: Does this ensure function1 and function2 use my class in thread safe way? Pin
Member 120616005-Feb-16 21:57
Member 120616005-Feb-16 21:57 
GeneralRe: Does this ensure function1 and function2 use my class in thread safe way? Pin
Gerry Schmitz6-Feb-16 6:05
mveGerry Schmitz6-Feb-16 6:05 
GeneralRe: Does this ensure function1 and function2 use my class in thread safe way? Pin
Member 120616006-Feb-16 7:13
Member 120616006-Feb-16 7:13 
GeneralRe: Does this ensure function1 and function2 use my class in thread safe way? Pin
Gerry Schmitz6-Feb-16 7:20
mveGerry Schmitz6-Feb-16 7:20 
GeneralRe: Does this ensure function1 and function2 use my class in thread safe way? Pin
Member 120616006-Feb-16 7:57
Member 120616006-Feb-16 7:57 
GeneralRe: Does this ensure function1 and function2 use my class in thread safe way? Pin
PIEBALDconsult5-Feb-16 15:00
mvePIEBALDconsult5-Feb-16 15:00 
GeneralRe: Does this ensure function1 and function2 use my class in thread safe way? Pin
Member 120616005-Feb-16 21:55
Member 120616005-Feb-16 21:55 
GeneralRe: Does this ensure function1 and function2 use my class in thread safe way? Pin
PIEBALDconsult6-Feb-16 2:18
mvePIEBALDconsult6-Feb-16 2:18 
GeneralRe: Does this ensure function1 and function2 use my class in thread safe way? Pin
Member 120616006-Feb-16 4:26
Member 120616006-Feb-16 4:26 
GeneralRe: Does this ensure function1 and function2 use my class in thread safe way? Pin
PIEBALDconsult6-Feb-16 5:23
mvePIEBALDconsult6-Feb-16 5:23 
GeneralRe: Does this ensure function1 and function2 use my class in thread safe way? Pin
Member 120616006-Feb-16 7:15
Member 120616006-Feb-16 7:15 
QuestionMessage Closed Pin
4-Feb-16 22:34
ginsa vaheed4-Feb-16 22:34 
AnswerRe: Can we developed c# code for Information KIOSK.? Pin
Pete O'Hanlon4-Feb-16 23:04
mvePete O'Hanlon4-Feb-16 23:04 
AnswerRe: Can we developed c# code for Information KIOSK.? Pin
F-ES Sitecore4-Feb-16 23:43
professionalF-ES Sitecore4-Feb-16 23:43 
GeneralRe: Can we developed c# code for Information KIOSK.? Pin
Richard Deeming5-Feb-16 3:50
mveRichard Deeming5-Feb-16 3:50 
GeneralRe: Can we developed c# code for Information KIOSK.? Pin
F-ES Sitecore5-Feb-16 4:02
professionalF-ES Sitecore5-Feb-16 4:02 
Questionwhen inheritance is ignored ? the limited scope of using 'new with methods Pin
BillWoodruff4-Feb-16 22:12
professionalBillWoodruff4-Feb-16 22:12 
AnswerRe: when inheritance is ignored ? the limited scope of using 'new with methods Pin
Eddy Vluggen4-Feb-16 23:56
professionalEddy Vluggen4-Feb-16 23:56 
Similar example as your found in the IDbConnection-classes; simplified, there's a property that shows the connection-state. Calling a method when using the wrong state will result in an exception offcourse.

..but yes, pass the boolean as a parameter and you can create a factory that returns either a class with five or one with seven members - but please don't abuse the constructor for that. Your construction-method is no longer part of the class being created.

Having seen the questions on CP on how to hide a proprerty from the UserControl-class, I still fail to see the value of hiding a public class-member. Simply make it private if you don't want it.

Make it private in the base, and implement it only on one of the inherited classes; that's not exactly hiding, that is simply not providing a method when it is not needed.
Bastard Programmer from Hell Suspicious | :suss:
If you can't read my code, try converting it here[^]

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.