在这里,我们将了解 Enum 类的 Format() 方法。该方法用于将枚举的指定值按照指定的格式转换为字符串。
用法:
string Enum.Format(Type enumType, object value, string format);
参数:
- enumType:类型是枚举。
- value:枚举对象。
- format:Format 将枚举值表示为指定的字符串格式。
返回值:
此方法根据指定的格式返回字符串值。
异常:
- System.ArgumentException
- System.ArgumentNullException
- System.InvalidOperationException
- System.FormatException
程序:
下面给出了演示使用 Enum 类的 Format() 方法的源代码。给定的程序已成功编译并执行。
using System;
class Sample
{
enum Color { RED=0,GREEN=1,YELLOW=3,WHITE=4,BLACK=5};
//Entry point of Program
static public void Main()
{
Color firstColor = Color.GREEN;
Color secondColor = Color.WHITE;
string strValue = "";
strValue = Enum.Format(typeof(Color), firstColor, "d");
Console.WriteLine(strValue);
strValue = Enum.Format(typeof(Color), secondColor, "x");
Console.WriteLine(strValue);
}
}
输出:
1 00000004 Press any key to continue . . .
相关用法
- C# Enum Equals()用法及代码示例
- C# Enum CompareTo()用法及代码示例
- C# Enum ToObject()用法及代码示例
- C# Enum Parse()用法及代码示例
- C# Environment GetEnvironmentVariable()用法及代码示例
- C# Environment GetCommandLineArgs()用法及代码示例
- C# Environment FailFast()用法及代码示例
- C# Environment Exit()用法及代码示例
- C# Decimal.FromOACurrency()用法及代码示例
- C# Int32.CompareTo用法及代码示例
- C# File.WriteAllLines(String, IEnumerable<String>)用法及代码示例
- C# Type.GetTypeHandle()用法及代码示例
- C# Uri.IsBaseOf()用法及代码示例
- C# String.ToUpperInvariant用法及代码示例
- C# File.Copy(String, String, Boolean)用法及代码示例
- C# Uri.IsHexEncoding()用法及代码示例
- C# Char.TryParse()用法及代码示例
- C# Math Cosh()用法及代码示例
- C# Int64.Equals用法及代码示例
- C# Convert.ToInt16(String, IFormatProvider)用法及代码示例
注:本文由纯净天空筛选整理自 C# program to demonstrate the use of Format() method of Enum class。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。