Click here to Skip to main content
15,881,424 members
Home / Discussions / C#
   

C#

 
GeneralRe: Send Whatsapp Messages from C# Windows Forms Application Pin
Zeyad Jalil18-Oct-21 2:50
professionalZeyad Jalil18-Oct-21 2:50 
GeneralRe: Send Whatsapp Messages from C# Windows Forms Application Pin
Dave Kreskowiak18-Oct-21 3:54
mveDave Kreskowiak18-Oct-21 3:54 
AnswerRe: Send Whatsapp Messages from C# Windows Forms Application Pin
Bejide Basirat1-Apr-23 16:50
Bejide Basirat1-Apr-23 16:50 
QuestionSql dependency Pin
Nader Rostamkhani17-Oct-21 2:13
Nader Rostamkhani17-Oct-21 2:13 
AnswerRe: Sql dependency Pin
OriginalGriff17-Oct-21 2:44
mveOriginalGriff17-Oct-21 2:44 
QuestionDesigning a shape object class in C# Pin
Stephen Holdorf17-Oct-21 0:48
Stephen Holdorf17-Oct-21 0:48 
AnswerRe: Designing a shape object class in C# Pin
BillWoodruff17-Oct-21 9:02
professionalBillWoodruff17-Oct-21 9:02 
GeneralRe: Designing a shape object class in C# Pin
Pete O'Hanlon17-Oct-21 21:47
mvePete O'Hanlon17-Oct-21 21:47 
Good morning Bill. Thanks for posting this code - it's great to see people sharing code like this. I have a couple of comments that I'd like to address.

The code sample here has a lot of shorthand in it so things like GetGPath have to be interpreted. Is there a reason why this isn't called GetGraphicsPath or just GetPath? On that note, why have you chosen to implement Get methods over property getters? I'm just curious as to your reasoning here.

The Shp properties all feel like they should be in a separate class. Again, it feels to me like these are metadata items, rather than being intrinsic parts of the base interface. I would probably move these out into a separate metadata class and drop the Shp parts of the name.

The Union and Intersection methods also appear to be wrong, unless you are looking to determine whether this shape intersects with more than one shape - the first parameter of these methods is probably going to be the current instance so why pass it in? I would expect to see a method that looks more like this
C#
IShape Union(IShape shape);


GeneralRe: Designing a shape object class in C# Pin
BillWoodruff18-Oct-21 0:59
professionalBillWoodruff18-Oct-21 0:59 
AnswerRe: Designing a shape object class in C# Pin
Gerry Schmitz17-Oct-21 11:47
mveGerry Schmitz17-Oct-21 11:47 
QuestionLooking for feedback and contributions to database project Pin
Michael Sydney Balloni16-Oct-21 17:27
professionalMichael Sydney Balloni16-Oct-21 17:27 
AnswerRe: Looking for feedback and contributions to database project Pin
Richard MacCutchan16-Oct-21 21:14
mveRichard MacCutchan16-Oct-21 21:14 
GeneralRe: Looking for feedback and contributions to database project Pin
BillWoodruff16-Oct-21 23:36
professionalBillWoodruff16-Oct-21 23:36 
GeneralRe: Looking for feedback and contributions to database project Pin
Richard MacCutchan17-Oct-21 1:25
mveRichard MacCutchan17-Oct-21 1:25 
GeneralRe: Looking for feedback and contributions to database project Pin
BillWoodruff17-Oct-21 4:24
professionalBillWoodruff17-Oct-21 4:24 
GeneralRe: Looking for feedback and contributions to database project Pin
Richard MacCutchan17-Oct-21 21:52
mveRichard MacCutchan17-Oct-21 21:52 
GeneralRe: Looking for feedback and contributions to database project Pin
BillWoodruff18-Oct-21 3:56
professionalBillWoodruff18-Oct-21 3:56 
GeneralRe: Looking for feedback and contributions to database project Pin
Richard MacCutchan18-Oct-21 4:35
mveRichard MacCutchan18-Oct-21 4:35 
GeneralRe: Looking for feedback and contributions to database project Pin
BillWoodruff18-Oct-21 5:38
professionalBillWoodruff18-Oct-21 5:38 
GeneralRe: Looking for feedback and contributions to database project Pin
Richard MacCutchan18-Oct-21 5:48
mveRichard MacCutchan18-Oct-21 5:48 
GeneralRe: Looking for feedback and contributions to database project Pin
BillWoodruff18-Oct-21 11:40
professionalBillWoodruff18-Oct-21 11:40 
GeneralRe: Looking for feedback and contributions to database project Pin
Richard MacCutchan18-Oct-21 21:39
mveRichard MacCutchan18-Oct-21 21:39 
AnswerRe: Looking for feedback and contributions to database project Pin
BillWoodruff16-Oct-21 23:25
professionalBillWoodruff16-Oct-21 23:25 
GeneralRe: Looking for feedback and contributions to database project Pin
Michael Sydney Balloni24-Oct-21 14:14
professionalMichael Sydney Balloni24-Oct-21 14:14 
GeneralRe: Looking for feedback and contributions to database project Pin
BillWoodruff24-Oct-21 22:59
professionalBillWoodruff24-Oct-21 22:59 

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.