Nexus.Client.Games.Morrowind.PluginManagement.Boss.BossSorter.GetPluginLoadOrder C# (CSharp) Метод

GetPluginLoadOrder() публичный Метод

Gets the load index of the specified plugin.
public GetPluginLoadOrder ( string p_strPlugin ) : Int32
p_strPlugin string The plugin whose load order is to be retrieved.
Результат System.Int32
		public Int32 GetPluginLoadOrder(string p_strPlugin)
		{
			UInt32 uintIndex = 0;
			UInt32 uintStatus = m_dlgGetPluginLoadOrder(m_ptrBossDb, StripPluginDirectory(p_strPlugin), out uintIndex);
			HandleStatusCode(uintStatus);
			return Convert.ToInt32(uintIndex);
		}