User Profile

Collapse

Profile Sidebar

Collapse
belial
belial
Last Activity: Nov 9 '09, 12:02 PM
Joined: Feb 2 '09
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • belial
    replied to ngen install - a very long time
    in .NET
    the problem occurs for 8 core computers only. for 1-2 core is ok

    we suppose there is a problem with ibm computers. to compare: dell machine with almost the same configuration and everything is ok

    unfortunatly it's a HUGE problem for us. we install the newest version of our product once a week, so installation takes 2-3 h per week (it coud be 10 minutes per week)
    See more | Go to post

    Leave a comment:


  • belial
    replied to Read some lines from a text file
    in .NET
    try this:

    Code:
    string line;
    using (StreamReader reader = new StreamReader(@"C:\testFile.txt"))
    {
       // read the first line
      line = reader.ReadLine();
      // read second line
      line = reader.ReadLine();
      
      while (!reader.EndOfStream)
      {
          // read next and next line till end of file
          line = reader.ReadLine();
      }
    }
    See more | Go to post

    Leave a comment:


  • belial
    started a topic ngen install - a very long time
    in .NET

    ngen install - a very long time

    Hi!

    I've been working with ngen.exe for a long time. there is the first time, when i've got the problem:
    ngen the libraries on one client workstation takes a veeery long time

    see log:
    02/01/2009 11:21:28 [2552]: Command line: C:\WINDOWS\Micr osoft.NET\Frame work\v2.0.50727 \ngen.exe INSTALL C:\Ngen.tmp\cmn DokumentySprzed azy.dll
    02/01/2009 11:21:28 [2552]: Installing assembly C:\Ngen.tmp\cmn DokumentySprzed azy.dll...
    See more | Go to post
No activity results to display
Show More
Working...