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

  • Home
  • SEARCH
  • 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 8617725
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 12, 20262026-06-12T05:55:52+00:00 2026-06-12T05:55:52+00:00

Consider this type, is it as immutable as I can make it? public struct

  • 0

Consider this type, is it as immutable as I can make it?

public struct SomeType
{
    public const int OneValue = 1;

    private static readonly one = new SomeType(one);

    private readonly int value;

    private SomeType(int value)
    {
        this.value = value;
    }

    public static One
    {
        get { return this.one; }
    }

    public static implicit operator int(SomeType source)
    {
        return source.value;
    }

    public void SomeSpecialization()
    {
    }
}

This allows me to do this,

var one = SomeType.One;

switch (one)
{
    case SomeType.OneValue:
        ...
}

but, is there anyway I can remove

public static implicit operator int(SomeType source)
    {
        return source.value;
    }

from the type definition and use the type like this?

var one = SomeType.One;

switch (one)
{
    case SomeType.One:
        ...
}
  • 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-12T05:55:54+00:00Added an answer on June 12, 2026 at 5:55 am

    The case expressions in a switch statement can only be compile-time constants of certain built-in types and enums. So the answer is no: no matter what you do with your SomeType (short of turning it into an enum), you cannot use SomeType objects as case expressions.

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

Sidebar

Related Questions

Consider this code: private readonly Dictionary<Type, Component> _components = new Dictionary<Type, Component>(); public Component
Consider this code snippet: public static void main(String[] args) { int z1 = 0;
Consider this struct. public struct myStruct{ public int value1; public int value2; public int
Consider this code: public <T> List<T> meth(List<?> type) { System.out.println(type); // 1 return new
Consider this type: [DataContract] public class EntityId { [DataMember(Order = 1)] public string IdAsString
Consider this simple example: template <class Type> class smartref { public: smartref() : data(new
Let's consider this model: A: columns: b_id: type: int notnull: false relations: b: B
Consider this piece of code: struct Trade { float Price; char* time; int shares;
Consider this interesting set of types: class A { public virtual int MyProperty {
Consider this example code: public class A<T> { public static T TheT { get;

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.