Server.DynamicSaveStrategy.SaveTypeDatabase C# (CSharp) Méthode

SaveTypeDatabase() private méthode

private SaveTypeDatabase ( string path, List types ) : void
path string
types List
Résultat void
		private void SaveTypeDatabase(string path, List<Type> types)
		{
			BinaryFileWriter bfw = new BinaryFileWriter(path, false);

			bfw.Write(types.Count);

			foreach (Type type in types)
			{
				bfw.Write(type.FullName);
			}

			bfw.Flush();

			bfw.Close();
		}
	}