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

C#

 
GeneralRe: XML file comparison output with node names Pin
Raja Saravanan3-Oct-18 17:14
Raja Saravanan3-Oct-18 17:14 
QuestionIssue with Land Registry Service reference.cs Pin
Member 1387432624-Sep-18 3:57
Member 1387432624-Sep-18 3:57 
AnswerRe: Issue with Land Registry Service reference.cs Pin
OriginalGriff24-Sep-18 4:08
mveOriginalGriff24-Sep-18 4:08 
AnswerRe: Issue with Land Registry Service reference.cs Pin
Richard Deeming24-Sep-18 7:56
mveRichard Deeming24-Sep-18 7:56 
GeneralRe: Issue with Land Registry Service reference.cs Pin
glennPattonWork325-Sep-18 0:52
professionalglennPattonWork325-Sep-18 0:52 
QuestionHow to get last day of specific date Pin
thepast23-Sep-18 18:11
thepast23-Sep-18 18:11 
AnswerRe: How to get last day of specific date Pin
Mycroft Holmes23-Sep-18 20:32
professionalMycroft Holmes23-Sep-18 20:32 
AnswerRe: How to get last day of specific date Pin
Maciej Los23-Sep-18 21:17
mveMaciej Los23-Sep-18 21:17 
It's quite easy. See:
C#
//we need this to properly convert string into date
System.Globalization.CultureInfo ci = new System.Globalization.CultureInfo("en-US");
//initial date
DateTime dt1 = DateTime.ParseExact("23/09/2018", "dd/MM/yyyy", ci);
//last day of month on specific date
//create new date:
//- add 1 month
//- subtract 1 day
//DateTime dt2 = new DateTime(dt1.Year, dt1.Month+1,1).AddDays(-1);  //bug for december!
DateTime dt2 = new DateTime(dt1.Year, dt1.Month,1).AddMonths(1).AddDays(-1);  //correct one
//display result
Console.WriteLine("{0} => {1}", dt1.ToString("yyyy-MM-dd"), dt2.ToString("yyyy-MM-dd"));
//prints: 2018-09-23 => 2018-09-30

For further details, please see:
DateTime Constructor (System) | Microsoft Docs
How to: convert strings to DateTime | Microsoft Docs

Good luck!

[EDIT]
Please, read OriginalGriff's comment to my answer. In my code is one bug, which you have to handle.
Thanks, OG!

modified 24-Sep-18 4:06am.

GeneralRe: How to get last day of specific date Pin
OriginalGriff23-Sep-18 21:38
mveOriginalGriff23-Sep-18 21:38 
GeneralRe: How to get last day of specific date Pin
Maciej Los23-Sep-18 22:02
mveMaciej Los23-Sep-18 22:02 
GeneralRe: How to get last day of specific date Pin
OriginalGriff23-Sep-18 22:26
mveOriginalGriff23-Sep-18 22:26 
AnswerRe: How to get last day of specific date Pin
OriginalGriff23-Sep-18 21:38
mveOriginalGriff23-Sep-18 21:38 
AnswerRe: How to get last day of specific date Pin
Richard MacCutchan23-Sep-18 21:54
mveRichard MacCutchan23-Sep-18 21:54 
QuestionStackoverflow Pin
Thomas Kiær23-Sep-18 0:28
Thomas Kiær23-Sep-18 0:28 
AnswerRe: Stackoverflow Pin
OriginalGriff23-Sep-18 1:13
mveOriginalGriff23-Sep-18 1:13 
GeneralRe: Stackoverflow Pin
Thomas Kiær23-Sep-18 5:45
Thomas Kiær23-Sep-18 5:45 
GeneralRe: Stackoverflow Pin
OriginalGriff23-Sep-18 6:04
mveOriginalGriff23-Sep-18 6:04 
GeneralRe: Stackoverflow Pin
Thomas Kiær23-Sep-18 6:14
Thomas Kiær23-Sep-18 6:14 
GeneralRe: Stackoverflow Pin
OriginalGriff23-Sep-18 6:27
mveOriginalGriff23-Sep-18 6:27 
QuestionC# Post files through rest api error Pin
Pradeep Kumar21-Sep-18 13:07
Pradeep Kumar21-Sep-18 13:07 
AnswerRe: C# Post files through rest api error Pin
Richard MacCutchan21-Sep-18 21:37
mveRichard MacCutchan21-Sep-18 21:37 
Questionstore image in DB by Parameters.AddWithValue Pin
Member 1352250120-Sep-18 17:01
Member 1352250120-Sep-18 17:01 
AnswerRe: store image in DB by Parameters.AddWithValue Pin
OriginalGriff20-Sep-18 21:23
mveOriginalGriff20-Sep-18 21:23 
QuestionHow to modify picturebox image when clicked button Pin
mores.JR20-Sep-18 9:54
mores.JR20-Sep-18 9:54 
QuestionMessage Removed Pin
20-Sep-18 9:07
Member 1399203720-Sep-18 9:07 

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.