I\'m trying to include a text file that contains some static data that I need to read in when the app starts up. I\'ve added the file and marked the Build Action to \"Resour
var resource = Application.GetResourceStream(
new Uri(@"/YOURASSEMBLYNAME;component/Stations.txt",
UriKind.Relative));
StreamReader streamReader = new StreamReader(resource.Stream);
string x = streamReader.ReadToEnd();