Esempio n. 1
0
        /// <summary></summary>
        public static UInt32SqlType GetUInt32()
        {
            string key = typeof(UInt32SqlType).Name;

            UInt32SqlType returnSqlType = ( UInt32SqlType )sqlTypes[key];

            if (returnSqlType == null)
            {
                returnSqlType = new UInt32SqlType();
                sqlTypes.Add(key, returnSqlType);
            }

            return(returnSqlType);
        }
		/// <summary></summary>
		public static UInt32SqlType GetUInt32()
		{
			string key = typeof( UInt32SqlType ).Name;

			UInt32SqlType returnSqlType = ( UInt32SqlType ) sqlTypes[ key ];
			if( returnSqlType == null )
			{
				returnSqlType = new UInt32SqlType();
				sqlTypes.Add( key, returnSqlType );
			}

			return returnSqlType;
		}