blob: 0bbc746d7f04c9d1cf84cf6d0f2c903650b9bda8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
/* EnumHelper.cs $
This file is part of the HandBrake source code.
Homepage: <http://handbrake.fr>.
It may be used under the terms of the GNU General Public License. */
namespace HandBrake.ApplicationServices.Functions
{
using System;
using System.ComponentModel;
using System.Reflection;
/// <summary>
/// Enum Helpers
/// </summary>
public class EnumHelper
{
/// <summary>
/// Get the description of an Enum
/// </summary>
/// <param name="value">
/// The value.
/// </param>
/// <returns>
/// The Description string
/// </returns>
public static string GetDescription(Enum value)
{
FieldInfo fieldInfo = value.GetType().GetField(value.ToString());
DescriptionAttribute[] attributes =
(DescriptionAttribute[])fieldInfo.GetCustomAttributes(
typeof(DescriptionAttribute), false);
return (attributes.Length > 0) ? attributes[0].Description : value.ToString();
}
}
}
|