System.Xml.Serialization.ReflectionAwareCodeGen.InitTheFirstTime C# (CSharp) Method

InitTheFirstTime() private method

private InitTheFirstTime ( ) : void
return void
        private void InitTheFirstTime()
        {
            if (_reflectionVariables == null)
            {
                _reflectionVariables = new Hashtable();
                _writer.Write(String.Format(CultureInfo.InvariantCulture, s_helperClassesForUseReflection,
                    "object", "string", typeof(Type).FullName,
                    typeof(FieldInfo).FullName, typeof(PropertyInfo).FullName,
                    typeof(MemberInfo).FullName /*, typeof(MemberTypes).FullName*/));

                WriteDefaultIndexerInit(typeof(IList), typeof(Array).FullName, false, false);
            }
        }