[Mono-bugs] [Bug 23179] New - FileInfo.FullName returns strange chars
bugzilla-daemon@rocky.ximian.com
bugzilla-daemon@rocky.ximian.com
8 Apr 2002 19:21:18 -0000
Please do not reply to this email- if you want to comment on the bug, go to the
URL shown below and enter your comments there.
Changed by pt99par@student.bth.se.
http://bugzilla.ximian.com/show_bug.cgi?id=23179
--- shadow/23179 Mon Apr 8 15:21:18 2002
+++ shadow/23179.tmp.29419 Mon Apr 8 15:21:18 2002
@@ -0,0 +1,52 @@
+Bug#: 23179
+Product: Mono/Class Libraries
+Version: unspecified
+OS:
+OS Details:
+Status: NEW
+Resolution:
+Severity:
+Priority: Normal
+Component: CORLIB
+AssignedTo: mono-bugs@ximian.com
+ReportedBy: pt99par@student.bth.se
+QAContact: mono-bugs@ximian.com
+TargetMilestone: ---
+URL:
+Cc:
+Summary: FileInfo.FullName returns strange chars
+
+Please fill in this template when reporting a bug, unless you know what you are
+doing.
+Description of Problem:
+The FileInfo.FullName property returns a binary sequenes when the FileInfo
+object is initiaiated with a single file that is relative:
+Example code:
+ using System;
+using System.IO;
+
+public class Test {
+
+ public static void Main(string[] args) {
+ FileInfo info2 = new FileInfo("test.cs");
+ Console.WriteLine( info2.FullName );
+ }
+
+}
+
+
+Steps to reproduce the problem:
+1. Take this code and compile and run it..
+2. Then you will see the strange string
+3.
+
+Actual Results:
+
+
+Expected Results:
+
+
+How often does this happen?
+
+
+Additional Information: