[Mono-bugs] [Bug 333740] System.Environment.GetEnvironmentVariables doesn' t return all environment variables

bugzilla_noreply at novell.com bugzilla_noreply at novell.com
Mon Nov 19 16:55:58 EST 2007


https://bugzilla.novell.com/show_bug.cgi?id=333740#c7


Gert Driesen <gert.driesen at pandora.be> changed:

           What    |Removed                                         |Added
----------------------------------------------------------------------------
             Status|RESOLVED                                        |REOPENED
         Resolution|FIXED                                           |




--- Comment #7 from Gert Driesen <gert.driesen at pandora.be>  2007-11-19 14:55:57 MST ---
Jonathan, for some reason the names of the environment variables are all
lowercase on Mono.

To reproduce, compile and run this:

using System;
using System.Collections;

class Program
{
        static void Main ()
        {
                IDictionary vars = Environment.GetEnvironmentVariables ();
                foreach (DictionaryEntry de in vars)
                        Console.WriteLine (de.Key);
        }
}


-- 
Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the QA contact for the bug.
You are the assignee for the bug.


More information about the mono-bugs mailing list