<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
  <channel>
    <title>Snipplr</title>
    <description>Recent snippets posted on Snipplr.com</description>
    <link>https://snipplr.com/</link>
    <lastBuildDate>Tue, 09 Jun 2026 16:14:27 +0000</lastBuildDate>
    <item>
      <title>(Windows PowerShell) Backup Multiple MSSQL Databases Batch File - dimitrisdapontes</title>
      <link>https://snipplr.com/view/73083/backup-multiple-mssql-databases-batch-file</link>
      <description>&lt;p&gt;The following script is used to perform batch backup of MSSQL server databases. It also compresses the backups using RAR that should already be installed on the computer. It is easy to use it in Windows Scheduler, in order to arrange daily backups of databases&lt;/p&gt;</description>
      <pubDate>Tue, 03 Dec 2013 22:58:08 UTC</pubDate>
      <guid>https://snipplr.com/view/73083/backup-multiple-mssql-databases-batch-file</guid>
    </item>
    <item>
      <title>(C#) Enum Description - dimitrisdapontes</title>
      <link>https://snipplr.com/view/69657/enum-description</link>
      <description>&lt;p&gt;&lt;p&gt;Returns the description set in an enum value, or if not description is found it returns the name of the enum value. Use this without worrying about passing the enum type, you should only pass the enum value&lt;/p&gt;&#13;
&#13;
&lt;p&gt;Example&lt;/p&gt;&#13;
&#13;
&lt;pre&gt;&lt;code&gt;internal enum Duration&#13;
{&#13;
    [Description("Every 12 Months")] Year = 1&#13;
    [Description("Every 6 Months")] Semester = 2&#13;
}&#13;
&#13;
GetEnumDescription(Duration.Year) returns "Every 12 Months"&#13;
&lt;/code&gt;&lt;/pre&gt;&lt;/p&gt;</description>
      <pubDate>Sat, 26 Jan 2013 21:28:06 UTC</pubDate>
      <guid>https://snipplr.com/view/69657/enum-description</guid>
    </item>
    <item>
      <title>(VB.NET) Enum Description - dimitrisdapontes</title>
      <link>https://snipplr.com/view/69656/enum-description</link>
      <description>&lt;p&gt;&lt;p&gt;Returns the description set in an enum value, or if no description is found it returns the name of the enum value. Use this without worrying about passing the enum type, you should only pass the enum value&lt;/p&gt;&#13;
&#13;
&lt;p&gt;Example&lt;/p&gt;&#13;
&#13;
&lt;pre&gt;&lt;code&gt;Friend Enum Duration&#13;
    &amp;lt;Description("Every 12 Months")&amp;gt; Year = 1&#13;
    &amp;lt;Description("Every 6 Months")&amp;gt; Semester = 2&#13;
End Enum&#13;
&#13;
GetEnumDescription(Duration.Year) returns "Every 12 Months"&#13;
&lt;/code&gt;&lt;/pre&gt;&lt;/p&gt;</description>
      <pubDate>Sat, 26 Jan 2013 21:14:56 UTC</pubDate>
      <guid>https://snipplr.com/view/69656/enum-description</guid>
    </item>
  </channel>
</rss>
