public static ImageSource GetImageSource(Assembly assembly, string path) { try { return(StreamObj.ToImageSource(Get(assembly, path))); } catch { return(null); } }
public static string GetString(Assembly assembly, string path) { try { return(StreamObj.ToString(Get(assembly, path))); } catch { return(null); } }