~ubuntu-branches/ubuntu/oneiric/monodevelop/oneiric

« back to all changes in this revision

Viewing changes to src/core/Mono.Debugging/Mono.Debugging.Backend/IObjectValueSource.cs

  • Committer: Bazaar Package Importer
  • Author(s): Jo Shields
  • Date: 2011-06-27 17:03:13 UTC
  • mto: (1.8.1 upstream)
  • mto: This revision was merged to the branch mainline in revision 54.
  • Revision ID: james.westby@ubuntu.com-20110627170313-6cvz3s19x6e9hqe9
ImportĀ upstreamĀ versionĀ 2.5.92+dfsg

Show diffs side-by-side

added added

removed removed

Lines of Context:
58
58
        [Serializable]
59
59
        public class EvaluationResult
60
60
        {
61
 
                public static EvaluationResult Empty = new EvaluationResult (string.Empty);
62
 
                
63
61
                public EvaluationResult (string value)
64
62
                {
65
63
                        Value = value;
71
69
                        DisplayValue = displayValue;
72
70
                }
73
71
                
74
 
                public string Value { get; set; }
75
 
                public string DisplayValue { get; set; }
 
72
                public string Value { get; private set; }
 
73
                public string DisplayValue { get; private set; }
76
74
                
77
75
                public override string ToString ()
78
76
                {