public MOUTHRow GetRow(string in_RowString) { MOUTHRow ret = null; try { ret = Rows[(int)System.Enum.Parse(typeof(rowIds), in_RowString)]; } catch (System.ArgumentException) { Debug.LogError(in_RowString + " is not a member of the rowIds enumeration."); } return(ret); }
public MOUTHRow GetRow(rowIds in_RowID) { MOUTHRow ret = null; try { ret = Rows[(int)in_RowID]; } catch (System.Collections.Generic.KeyNotFoundException ex) { Debug.LogError(in_RowID + " not found: " + ex.Message); } return(ret); }