Nexus.Client.ModManagement.ReadMeManager.CheckModReadMe C# (CSharp) Method

CheckModReadMe() public method

Check if there's a readme file for the given mod.
public CheckModReadMe ( string p_strModName ) : string[]
p_strModName string
return string[]
		public string[] CheckModReadMe(string p_strModName)
		{
			string strReadMe = String.Empty;
			if (m_dicReadMeFiles.ContainsKey(p_strModName))
			{
				return m_dicReadMeFiles[p_strModName];
			}

			return null;
		}