Returns the simple name of the class, for use in exception messages. : Exception Stack « Language Basics « C# / C Sharp






Returns the simple name of the class, for use in exception messages.

 
//******************************
// Written by Peter Golde
// Copyright (c) 2004-2007, Wintellect
//
// Use and restribution of this code is subject to the license agreement 
// contained in the file "License.txt" accompanying this file.
//******************************

using System;
using System.Collections;
using System.Collections.Generic;


namespace Wintellect.PowerCollections
{
  /// <summary>
  /// A holder class for various internal utility functions that need to be shared.
  /// </summary>
    internal static class Util
    {
        /// <summary>
        /// Returns the simple name of the class, for use in exception messages. 
        /// </summary>
        /// <returns>The simple name of this class.</returns>
        public static string SimpleClassName(Type type)
        {
            string name = type.Name;

            // Just use the simple name.
            int index = name.IndexOfAny(new char[] { '<', '{', '`' });
            if (index >= 0)
                name = name.Substring(0, index);

            return name;
        }
   }
}

   
  








Related examples in the same category

1.Printing the stack trace from the Environment when an exception is not thrownPrinting the stack trace from the Environment when an exception is not thrown
2.Print the stack trace when an exception is thrownPrint the stack trace when an exception is thrown
3.Format Error String
4.Gets the details of an exception suitable for display.
5.Get Most Inner Exception