Can C# do Read Stream from assembly?

Viewed 32

Im totally new to C# and .Net and I did some research about Streams and wonder if I can Read stream some data inside an Assembly.

I have look into multiple resources but was not able to find some clues or answers and was hoping somebody can steer me into the right direction.

1 Answers

with this method and related namespace you can read stream from assembly

System.Reflection.Assembly.GetExecutingAssembly().GetManifestResourceNames()
Related