Server.Commands.Categorization.Load C# (CSharp) Méthode

Load() private static méthode

private static Load ( ArrayList types, string config ) : CategoryEntry
types System.Collections.ArrayList
config string
Résultat CategoryEntry
		private static CategoryEntry Load( ArrayList types, string config )
		{
			CategoryLine[] lines = CategoryLine.Load( config );

			if ( lines.Length > 0 )
			{
				int index = 0;
				CategoryEntry root = new CategoryEntry( null, lines, ref index );

				Fill( root, types );

				return root;
			}

			return new CategoryEntry();
		}

Same methods

Categorization::Load ( ) : void