public bool[] NashValue() { bool[] options = new bool[2] { NashTvCompanies.BestOption(), NashTvCompanies.BestOption() }; return(options); }
public static bool BestOption() { NashTvCompanies firstDoingPublicity = new NashTvCompanies(true, false); NashTvCompanies firstNotDoingPublicity = new NashTvCompanies(false, false); if (firstDoingPublicity.GetFirstWorstEarning() > firstNotDoingPublicity.GetFirstWorstEarning()) { return(true); } else { return(false); } }
public string NashValueNums() { return(new NashTvCompanies(NashTvCompanies.BestOption(), NashTvCompanies.BestOption()).GetStringEarnings()); }