1919
2020namespace ActiveUp . Net . Mail
2121{
22- #region Address Object
22+ #region Address Object
2323
2424 /// <summary>
2525 /// Represent an Internet Email address with the owner's fullname.
2626 /// </summary>
2727#if ! PocketPC
2828 [ System . Serializable ]
2929#endif
30- public class Address
30+ public class Address
3131 {
3232 string _email , _name ;
33- /// <summary>
33+ /// <summary>
3434 /// The default constructor. Set all properties to string.Empty.
3535 /// </summary>
3636 public Address ( )
@@ -47,9 +47,9 @@ public Address(string email)
4747 {
4848 /*this.Email =
4949 this.Name = string.Empty;*/
50- Address addr = Parser . ParseAddress ( email ) ;
51- this . Email = addr . Email ;
52- this . Name = addr . Name ;
50+ Address addr = Parser . ParseAddress ( email ) ;
51+ this . Email = addr . Email ;
52+ this . Name = addr . Name ;
5353 }
5454
5555 /// <summary>
@@ -88,7 +88,7 @@ public string Name
8888//#if TRIAL
8989// return ProductHelper.GetTrialString(this._name, TrialStringType.LongText);
9090//#else
91- return _name ;
91+ return _name ;
9292//#endif
9393 }
9494 set
@@ -120,16 +120,16 @@ public string Merged
120120 }
121121 }
122122
123- /// <summary>
124- /// Returns a <see cref="T:System.String"></see> that represents the current <see cref="T:System.Object"></see>.
125- /// </summary>
126- /// <returns>
127- /// A <see cref="T:System.String"></see> that represents the current <see cref="T:System.Object"></see>.
128- /// </returns>
129- public override string ToString ( )
130- {
131- return this . Merged ;
132- }
123+ /// <summary>
124+ /// Returns a <see cref="T:System.String"></see> that represents the current <see cref="T:System.Object"></see>.
125+ /// </summary>
126+ /// <returns>
127+ /// A <see cref="T:System.String"></see> that represents the current <see cref="T:System.Object"></see>.
128+ /// </returns>
129+ public override string ToString ( )
130+ {
131+ return this . Merged ;
132+ }
133133
134134 ///<summary>
135135 /// Gets an HTML formatted link to the address (mailto: form).
@@ -138,7 +138,7 @@ public string Link
138138 {
139139 get
140140 {
141- string getString = string . Empty ;
141+ string getString = string . Empty ;
142142
143143 if ( this . Name . Length > 0 )
144144 {
0 commit comments