Enum value format: f F : Enum Format « Data Types « VB.Net






Enum value format: f F

 

Imports System

Class Sample
   Enum Colors
      Red
      Green
      Blue
      Yellow = 12
   End Enum 'Colors

   Public Shared Sub Main()
      Dim myColor As Colors = Colors.Yellow


      Console.WriteLine("myColor.ToString(""f"") = {0}", myColor.ToString("f"))
      Console.WriteLine("myColor.ToString(""F"") = {0}", myColor.ToString("F"))

   End Sub
End Class

   
  








Related examples in the same category

1.Format Enum value to String: "G", "F", "D", "X"
2.Enum.Format Method converts enumerated type to string representation according to the specified format.
3.Enum.ToString Method converts enum to string using the specified format.
4.Enum value format: G g
5.Enum value format: x X
6.Enum value format: d D
7.Enumeration Format Strings: G
8.Enumeration Format Strings: F
9.Enumeration Format Strings: D
10.Enumeration Format Strings: X