コード例 #1
0
 public void Clear()
 {
     if (_dictionary != null)
     {
         _dictionary.Clear();
     }
 }
        /// <summary>
        /// Clear all the context properties
        /// </summary>
        /// <remarks>
        /// <para>
        /// Clear all the context properties
        /// </para>
        /// </remarks>
        public void Clear()
        {
            PropertiesDictionary dictionary = GetProperties(false);

            if (dictionary != null)
            {
                dictionary.Clear();
            }
        }
コード例 #3
0
        /// <summary>
        /// Clear all properties
        /// </summary>
        /// <remarks>
        /// <para>
        /// Clear all properties
        /// </para>
        /// </remarks>
        public void Clear()
        {
#if NETCF
            PropertiesDictionary _dictionary = GetProperties(false);
#endif
            if (_dictionary != null)
            {
                _dictionary.Clear();
            }
        }