diff options
Diffstat (limited to 'src/YOURLIBNAME/Util.cs')
-rw-r--r-- | src/YOURLIBNAME/Util.cs | 16 |
1 files changed, 14 insertions, 2 deletions
diff --git a/src/YOURLIBNAME/Util.cs b/src/YOURLIBNAME/Util.cs index fed1c85..16f52fa 100644 --- a/src/YOURLIBNAME/Util.cs +++ b/src/YOURLIBNAME/Util.cs @@ -1,8 +1,20 @@ -namespace YOURLIBNAME {
+//-----------------------------------------------------------------------
+// <copyright file="Util.cs" company="Andrew Arnott">
+// Copyright (c) Andrew Arnott. All rights reserved.
+// </copyright>
+//-----------------------------------------------------------------------
+namespace YOURLIBNAME {
using System.Globalization;
using System.Reflection;
- class Util {
+ /// <summary>
+ /// A grab-bag utility class.
+ /// </summary>
+ internal class Util {
+ /// <summary>
+ /// Gets a human-readable description of the library name and version, including
+ /// whether the build is an official or private one.
+ /// </summary>
public static string LibraryVersion {
get {
string assemblyFullName = Assembly.GetExecutingAssembly().FullName;
|