<?xml version="1.0" encoding="utf-8"?>
<CodeSnippets xmlns="http://schemas.microsoft.com/VisualStudio/2005/CodeSnippet">
  <CodeSnippet Format="1.0.0">
    <Header>
      <Title>Returns last day of month based on passed in date</Title>
      <Shortcut>Returnslastdayofmonthbasedonpassedindate</Shortcut>
      <Description>Returns last day of month based on passed in date [C#]</Description>
      <Author>Todd Knudsen</Author>
      <HelpUrl>/PreviewSnippet.aspx?SnippetID=0df09446-8417-4627-83b7-d7b45a3614cb</HelpUrl>
      <SnippetTypes>
        <SnippetType>SurroundsWith</SnippetType>
      </SnippetTypes>
    </Header>
    <Snippet>
      <Code Language="csharp"><![CDATA[        public static DateTime LastDayMonth(DateTime date)
        {
            date = date.AddMonths(1);
            date = date.AddDays(-date.Day);
            return date;
        }]]></Code>
    </Snippet>
  </CodeSnippet>
</CodeSnippets>