Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8528641
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 11, 20262026-06-11T08:50:54+00:00 2026-06-11T08:50:54+00:00

If I have the following: public enum TYPE { One = 1, Two =

  • 0

If I have the following:

public enum TYPE
{
   One = 1,
   Two = 2,
   Three = 3
}

When I do:

 var a = TYPE.One;

I would like it to populate the variable a with a string in the format “01”. In other words two digits with a leading zero.

Is it possible to do this by assigning some method to the SomeEnum? I realized I could use TYPE.One.ToString(“00”)but I would like to have it self-contained in the enum and something very simple to use.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-11T08:50:55+00:00Added an answer on June 11, 2026 at 8:50 am

    can do something like this :

    public static class Ext {
    
        public static string ToMyString(this Enumer en ) {
             return ((int)en).ToString("00");
        }
    }
    

    and after use this like:

    public enum TYPE { One = 1, Two = 2, Three = 3 }
    Type t = TYPE.One; 
    
    string s = t.ToMyString();
    

    Yes, conceptually it’s the same as like declaring a string , but it’s hidden inside extension method.

    Other solution is: to simply avoid, at this point, using enums in that way.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have the three following enums: public enum SensorTypeA{A1,A2,...,A12}; public enum SensorTypeB{B1,B2,...,B12}; public enum
The following code: foo.h #include bar.h class foo{ public: enum my_enum_type { ONE, TWO,
I have a problem with the following code: class SymmetryTypes { public: enum Type
I have a ServiceContract which returns dynamic type and looks like following: public dynamic
I have the following method and enum: public int GetRowType(string pk) { return Convert.ToInt32(pk.Substring(2,
I have the following (simplified) public enum Level { Bronze, Silver, Gold } public
I have following Enum in my project public enum CameraAccessMethod { Manual = 0,
I have the following enum: [Flags] public enum PermissionLevel { User = 1, Administrator
I have the following enum. public enum DATABASE_TYPES { JDataStore, Access, SQLServer, H2, PostGresSQL,
I have the following class: class Enum(RootFragment): def __init__(self, column, packageName, name, modifiers=[public], enumValues=[]):

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.