internal static string GetDestinationName(InterlinDestination dest) { var stid = "ksFld" + dest; return ITextStrings.ResourceManager.GetString(stid) ?? dest.ToString(); }
internal static string GetDestinationName(InterlinDestination dest) { var stid = "ksFld" + dest; return(ITextStrings.ResourceManager.GetString(stid) ?? dest.ToString()); }
public static string GetDestinationNameFromResource(InterlinDestination dest, ResourceManager rm) { var stid = "ksFld" + dest; return(rm.GetString(stid) ?? dest.ToString()); }
protected virtual string GetDestinationName(InterlinDestination destEnum) { return(GetDestinationNameFromResource(destEnum, LexTextControls.ResourceManager)); }
public static string GetDestinationNameFromResource(InterlinDestination dest, ResourceManager rm) { var stid = "ksFld" + dest; return rm.GetString(stid) ?? dest.ToString(); }
protected virtual string GetDestinationName(InterlinDestination destEnum) { return GetDestinationNameFromResource(destEnum, LexTextControls.ResourceManager); }