I am struggling to find an easy way to load my test data in C#.
In Java, I load a resource using the following code:
... public static InputStream loadR
Yes - use Assembly.GetManifestResourceStream, e.g.
typeof(TestClass).Assembly .GetManifestResourceStream("test.namespace.Filename.txt")
Just make sure the files are tagged as "Embedded Resource" in the properties, so they get built into the assembly correctly.