[Mono-bugs] [Bug 58130][Nor] Changed - Console.WriteLine("{0}",5); is not work
bugzilla-daemon@bugzilla.ximian.com
bugzilla-daemon@bugzilla.ximian.com
Thu, 13 May 2004 23:11:35 -0400 (EDT)
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 ddmk@r66.ru.
http://bugzilla.ximian.com/show_bug.cgi?id=58130
--- shadow/58130 2004-05-13 15:53:41.000000000 -0400
+++ shadow/58130.tmp.353 2004-05-13 23:11:35.000000000 -0400
@@ -1,12 +1,12 @@
Bug#: 58130
Product: Mono: Class Libraries
Version: unspecified
OS: Windows XP
OS Details:
-Status: NEEDINFO
+Status: REOPENED
Resolution:
Severity: 001 One hour
Priority: Normal
Component: System
AssignedTo: jackson@ximian.com
ReportedBy: ddmk@r66.ru
@@ -70,6 +70,80 @@
Additional Information:
------- Additional Comments From edasque@ximian.com 2004-05-13 15:53 -------
works with on an english system. What are your LANG settings ? Could you provide us with
an 'export' of your env. variables ?
+
+------- Additional Comments From ddmk@r66.ru 2004-05-13 23:11 -------
+Standarts And Formats=Russian ,Lang=Russian,Location=Russian
+(in Regional and Language Settings)
+
+APPDATA=H:\Documents and Settings\Dim\Application Data
+CommonProgramFiles=H:\Program Files\Common Files
+COMPUTERNAME=DIMA
+ComSpec=H:\WINDOWS\system32\cmd.exe
+FARLANG=Russian
+HOMEDRIVE=H:
+HOMEPATH=\Documents and Settings\Dim
+INCLUDE=h:\Program Files\Microsoft Visual Studio .NET 2003\SDK\v1.1
+\include\
+LIB=h:\Program Files\Microsoft Visual Studio .NET 2003\SDK\v1.1\Lib\
+MONO_CFG_DIR=H:/Program Files/Mono/etc/mono
+MONO_PATH=H:/Program Files/Mono/lib
+NUMBER_OF_PROCESSORS=1
+OS=Windows_NT
+PROCESSOR_ARCHITECTURE=x86
+PROCESSOR_IDENTIFIER=x86 Family 6 Model 6 Stepping 2, AuthenticAMD
+PROCESSOR_LEVEL=6
+PROCESSOR_REVISION=0602
+ProgramFiles=H:\Program Files
+PROMPT=$P$G
+SESSIONNAME=Console
+SystemDrive=H:
+SystemRoot=H:\WINDOWS
+TEMP=H:\DOCUME~1\Dim\LOCALS~1\Temp
+TMP=H:\DOCUME~1\Dim\LOCALS~1\Temp
+USERDOMAIN=DIMA
+USERNAME=Dim
+USERPROFILE=H:\Documents and Settings\Dim
+windir=H:\WINDOWS
+
+
+May be this bug connected with another problems many assemblies not
+found by mono such as :
+
+//1.cs
+using System;
+using System.IO;
+using System.Text;
+using System.Text.RegularExpressions;
+using System.Collections;
+
+
+
+namespace Splinex.Interface_generator
+{
+ public class PublicFuncs
+ {
+ static Regex r=new Regex(@"[\s\t]+");
+public static string [] Split(string a){ return r.Split(a);}
+ static void Main()
+ { Split("a b");}
+
+ }
+}
+F:\My\Projects\cpp\temp\3>mcs 1.cs
+
+** (H:\Program Files\Mono\lib\mono\1.0\mcs.exe:2832): WARNING **:
+Could not find assembly System, references from H:\Program
+Files\Mono\lib\mono\1.0\mcs.exe (assemblyref_index=1)
+ Major/Minor: 1,0
+ Build: 5000,0
+ Token: b77a5c561934e089
+
+
+Unhandled Exception: System.NullReferenceException: Object reference
+not set to an instance of an object
+
+And HALTING.
+