up vote 7 down vote favorite
1
share [g+] share [fb]

Apart from the questionable usefulness of this, I'd like to ask if it is possible to do something along these lines.

class MyPrimitive {
        String value;
        public String Value {
            get { return value; }
            set { this.value = value; }
        }
}

// Instead of doing this...
MyPrimitive a = new MyPrimitive();
a.Value = "test";
String b = a.Value;

// Isn't there a way to do something like this?
MyPrimitive a = "test";
String b = a;

I like to wrap primitive types into custom classes using a property to make the get and set method perform other things, like validation.
Since I'm doing this quite often I thought that it'd be nice to also have a simpler syntax, like for the standard primitives.
Still, I suspect that this not only isn't feasible but could also be conceptually wrong. Any insights would be most welcome, thanks.

link|improve this question
feedback

2 Answers

up vote 15 down vote accepted

Use a value type (struct) and give it an implicit conversion operator from the type you want on the right hand side of assignment.

struct MyPrimitive
{
    private readonly string value;

    public MyPrimitive(string value)
    {
        this.value = value;
    }

    public string Value { get { return value; } }

    public static implicit operator MyPrimitive(string s)
    {
        return new MyPrimitive(s);
    } 

    public static implicit operator string(MyPrimitive p)
    {
        return p.Value;
    }
}

EDIT: Made the struct immutable because Marc Gravell is absolutely right.

link|improve this answer
This is exactly what the asker is looking for. It's not exactly a "custom primitive", but it mimics one as well as possible, and is the right way to go in C#. – Noldorin May 6 '09 at 21:36
3  
If you make it a struct, you should absolutely make it immutable at the same time; having a {get;set;} on a struct is a very, very bad idea. Did I mention the badness? – Marc Gravell May 6 '09 at 21:39
Totally agreed, sorry for the confusion. I was originally, wrongly, trying to mimic his example as closely as possible. – Neil Williams May 6 '09 at 21:41
Cheers for fixing; I'll give it a +1 with that tweak ;-p – Marc Gravell May 6 '09 at 21:42
Thankyou muchly, good sir! – Neil Williams May 6 '09 at 21:44
show 1 more comment
feedback

You could use implicit casting. It's not recommended, but:

public static implicit operator string(MyString a) {
    return a.Value;
}
public static implicit operator MyString(string a) {
    return new MyString { value = a; }
}

Again, bad practice.

link|improve this answer
Not sure it's invariably "bad practice". Depends on the context, in my opinion. – Noldorin May 6 '09 at 21:37
Using conversion operators on reference types hides the instantiation of new objects; or worse, returns an old reference which for mutable types (not the string) can only cause trouble. To me it's preferable with conversion operators on value types only, and leave reference types to up- and downcasts. – Cecil Has a Name May 21 '09 at 22:28
feedback

Your Answer

 
or
required, but never shown