SORU
20 ŞUBAT 2011, Pazar


C giriş yapmayı#?

Benim uygulama günlüğü uygulamak istiyorum ama log4net gibi herhangi bir dış çerçeve kullanmak istemiyorum.

Dos gibi bir şey yapmak istiyorum yani dosya için yankı yapıyor. Bunu yapmak için en etkili yolu nedir?

Bir şekilde işlenmeyen özel durumlar dışında bir çerçeve kullanmadan oturum oturum var mı?

CEVAP
20 ŞUBAT 2011, Pazar


public void Logger(String lines)
{

 // Write the string to a file.append mode is enabled so that the log
 // lines get appended to  test.txt than wiping content and writing the log

  System.IO.StreamWriter file = new System.IO.StreamWriter("c:\\test.txt",true);
  file.WriteLine(lines);

  file.Close();

}

Daha fazla bilgi MSDN:

Bunu Paylaş:
  • Google+
  • E-Posta
Etiketler:

YORUMLAR

SPONSOR VİDEO

Rastgele Yazarlar

  • HowtoDrawAndPaint

    HowtoDrawAnd

    24 EKİM 2010
  • LearnCode.academy

    LearnCode.ac

    20 Aralık 2012
  • pjtoohot

    pjtoohot

    15 NİSAN 2008