~ubuntu-branches/ubuntu/trusty/monodevelop/trusty-proposed

« back to all changes in this revision

Viewing changes to external/maccore/src/Foundation/NSLocale.cs

  • Committer: Package Import Robot
  • Author(s): Jo Shields
  • Date: 2013-05-12 09:46:03 UTC
  • mto: This revision was merged to the branch mainline in revision 29.
  • Revision ID: package-import@ubuntu.com-20130512094603-mad323bzcxvmcam0
Tags: upstream-4.0.5+dfsg
ImportĀ upstreamĀ versionĀ 4.0.5+dfsg

Show diffs side-by-side

added added

removed removed

Lines of Context:
38
38
                                return (string) (NSString) ObjectForKey (_Identifier);
39
39
                        }
40
40
                }
 
41
 
 
42
                public string GetIdentifierDisplayName (string value)
 
43
                {
 
44
                        return DisplayNameForKey (_Identifier, value);
 
45
                }
41
46
                
42
47
                public string LanguageCode {
43
48
                        get {
45
50
                        }
46
51
                }
47
52
                
 
53
                public string GetLanguageCodeDisplayName (string value)
 
54
                {
 
55
                        return DisplayNameForKey (_LanguageCode, value);
 
56
                }
 
57
                
48
58
                public string CountryCode {
49
59
                        get {
50
60
                                return (string) (NSString) ObjectForKey (_CountryCode);
51
61
                        }
52
62
                }
 
63
 
 
64
                public string GetCountryCodeDisplayName (string value)
 
65
                {
 
66
                        return DisplayNameForKey (_CountryCode, value);
 
67
                }
53
68
                
54
69
                public string ScriptCode {
55
70
                        get {
116
131
                                return  (string) (NSString) ObjectForKey (_CurrencyCode);
117
132
                        }
118
133
                }
 
134
 
 
135
                public string GetCurrencyCodeDisplayName (string value)
 
136
                {
 
137
                        return DisplayNameForKey (_CurrencyCode, value);
 
138
                }
119
139
                
120
140
                public string CollatorIdentifier {
121
141
                        get {