[Mono-dev] Re: [Mono-patches] r52237 - trunk/mcs/class/System/System.Collections.Specialized

Gonzalo Paniagua Javier gonzalo at ximian.com
Wed Oct 26 13:13:25 EDT 2005


On Wed, 2005-10-26 at 06:47 -0400, Svetlana Zholkovsky
(svetlanaz at mainsoft.com) wrote:
> +		private IDictionary inner
> +		{
> +			get
> +			{
> +				if (list != null)
> +					return list;
> +				return hashtable;
> +			}
> +			set
> +			{
> +				list = value as ListDictionary;
> +				hashtable = value as Hashtable;
> +			}
> +		}

You should read http://www.mono-project.com/Coding_Guidelines and make
your patches follow those guidelines.

-Gonzalo





More information about the Mono-devel-list mailing list