@@ -1193,7 +1193,7 @@ public byte[] SerializeBytes() {
11931193 /// <param name="settings">The settings of the field.</param>
11941194 /// <param name="value">The value of the field.</param>
11951195 /// <param name="isField">NOT USED.</param>
1196- /// <param name="IncludeTypeInfo">If true, typed info is written to the MXML file.</param>
1196+ /// <param name="IncludeTypeInfo">If true, type info is written to the MXML file.</param>
11971197 public MXmlBase SerializeMXmlValue ( Type fieldType , FieldInfo field , NMSAttribute settings , object value , bool isField = true , bool IncludeTypeInfo = false )
11981198 {
11991199 string t = fieldType . Name ;
@@ -1486,7 +1486,7 @@ private static int GetArrayLength( string fieldName, NMSAttribute settings ) {
14861486 /// </summary>
14871487 /// <param name="isChildTemplate">If true, </param>
14881488 /// <param name="isGenericTemplate">If true, </param>
1489- /// <param name="IncludeTypeInfo">If true, typed info is written to the MXML file.</param>
1489+ /// <param name="IncludeTypeInfo">If true, type info is written to the MXML file.</param>
14901490 public MXmlBase SerializeMXml ( bool isChildTemplate , bool isGenericTemplate = false , bool IncludeTypeInfo = false ) {
14911491 Type type = GetType ( ) ;
14921492 string typeName = type . Name != "NMSString0x20A" ? type . Name : "NMSString0x20" ;
@@ -1827,17 +1827,12 @@ public void WriteToMbin(string outputpath)
18271827 }
18281828 }
18291829
1830- ///// <summary>
1831- ///// Writes the NMSTemplate object to an .mxml file.
1832- ///// </summary>
1833- ///// <param name="outputpath">The location to write the .mxml file.</param>
1834- //public void WriteToMxml(string outputpath) => WriteToMxml(outputpath, false);
18351830 /// <summary>
18361831 /// Writes the NMSTemplate object to an .mxml file.
18371832 /// </summary>
18381833 /// <param name="outputpath">The location to write the .mxml file.</param>
18391834 /// <param name="hideVersionInfo">If true, version info is not written to the MXML file.</param>
1840- /// <param name="IncludeTypeInfo">If true, typed info is written to the MXML file.</param>
1835+ /// <param name="IncludeTypeInfo">If true, type info is written to the MXML file.</param>
18411836 public void WriteToMxml ( string outputpath , bool hideVersionInfo , bool IncludeTypeInfo )
18421837 {
18431838 var data = MXmlFile . WriteTemplate ( this , hideVersionInfo , IncludeTypeInfo ) ;
0 commit comments