C#
 Computer >> コンピューター >  >> プログラミング >> C#

C#のEnum.GetName


Enum.GetNameを使用して列挙値の文字列表現を取得します。

2つのパラメータがあります-

  • タイプ −列挙型

  • オブジェクト −列挙の値

以下は例です-

using System;

class Demo {
   enum Vehicle {
      Car,
      Motorbike,
      Truck,
      Bicycles
   };
   static void Main() {
      // Usig GetName to get the string representation of enum type
      string res = Enum.GetName(typeof(Vehicle), Vehicle.Motorbike);
   
      // Displaying
      Console.WriteLine(res);
   }
}

出力

Motorbike

  1. C#で文字列を反転します

    文字列を逆にするには、配列を使用します。 Reverse()メソッド。 メソッドを設定し、文字列値を「Henry」として渡しました- public static string ReverseFunc(string str) {    char[] ch = str.ToCharArray();    Array.Reverse(ch);    return new string(ch); } 上記の方法では、文字列を文字配列に変換しました- char[] ch = str.ToCharArray(); 次に、Reverse()メ

  2. 文字列値で列挙型を検索するJavaプログラム

    この記事では、文字列値で列挙型を検索する方法を理解します。列挙型は、定数のグループ(最終変数などの変更できない変数)を表す特別な「クラス」です。 以下は同じのデモンストレーションです- 入力がであると仮定します − The string is to lookup is: Java 必要な出力は − The result is: JAVA アルゴリズム Step 1 - START Step 2 - Declare a string namely input_string, an object of Languages namely result. Step 3 - Define th