Click here to Skip to main content
Click here to Skip to main content

Useful wrapper class to override the Object.ToString method

By , 3 Oct 2011
 

This class can be useful for when you want to override the Object.ToString method on a type you don't have access to edit.

public class ToStringWrapper<T>
{
    private readonly T _wrappedObject;
    private readonly Func<T, string> _toStringFunction;
 
    public T WrappedObject
    {
        get { return _wrappedObject; }
    }
 
    public ToStringWrapper(T wrappedObject, Func<T, string> toStringFunction)
    {
        this._wrappedObject = wrappedObject;
        this._toStringFunction = toStringFunction;
    }
 
    public override string ToString()
    {
        return _toStringFunction(_wrappedObject);
    }
}
 

Sample usage: Don't have access to edit the Person type and you want the Name property's value to be returned in the ToString method.

 
public sealed class Person
{
    public string Name { get; set; }
}
 
class Program
{
    static void Main(string[] args)
    {
        // Person type not wrapped.  Type will be returned in ToString method
        var person = new Person { Name = "TestName" };
        Console.WriteLine(person);
 
        // Person type wrapped with ToStringWrapper<T> class and supplying
        // a function that will return the Person class's Name property value.
        var personWrapper = new ToStringWrapper<Person>(person, i => i.Name);
        Console.WriteLine(personWrapper);
 
        Console.ReadKey();
    }
}
 
Output:
ConsoleApplication1.Person
TestName

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

Jay_Cee
South Africa South Africa
Member
No Biography provided

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
Hint: For improved responsiveness ensure Javascript is enabled and choose 'Normal' from the Layout dropdown and hit 'Update'.
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
GeneralReason for my vote of 5 Also usefull in the debugger :)memberEddy Vluggen13 Sep '11 - 13:14 
GeneralRe: I think DebuggerDisplay and DebuggerTypeProxy attributes are...membermoozzyk10 Oct '11 - 19:57 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Permalink | Advertise | Privacy | Mobile
Web04 | 2.6.130516.1 | Last Updated 3 Oct 2011
Article Copyright 2011 by Jay_Cee
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid