Search results for query: *

  1. jamiebaker

    VB.NET without .NET Framework?

    Yep, this is what we used to do to get .Net apps running under WINPE - everytime the machine was booted we would add every vb.net related reg key and DLL in at runtime; it works, and could be done programatically but would be an awful mess.
  2. jamiebaker

    Reading a Text File Line by Line

    Hi there, The peek in this code is essentially telling us when there is nothing left to read in. Peek will return the next character along without moving the streamreader object along. If peek returns -1 it means there is nothing left to read after the current position therefore in this...
Back
Top