System.IO.FileInfo.ToString C# (CSharp) 메소드

ToString() 공개 메소드

public ToString ( ) : string
리턴 string
        public override string ToString() { throw null; }
    }

Same methods

FileInfo::ToString ( ) : String

Usage Example

예제 #1
0
 public void Add(string a)
 {
     using (StreamWriter writer = new StreamWriter(file.ToString(), true, System.Text.Encoding.Default))
     {
         writer.WriteLine(DateTime.Now + " - " + a);
     }
 }
All Usage Examples Of System.IO.FileInfo::ToString