Title: Loading "System.Data" assembley

Calling Assembly.LoadWithPartialName( 'System.Data' ) seem to be silently failing and not making System.Data namespace available.  However, loading another assembly which in turns loads system.data seems to work.  Has anyone seen this before?  Also tried loading with full name.

      See Example Below:

      Fails

      #Assembly.LoadWithPartialName( 'DevExpress.Utils.v6.2' )

      Assembly.LoadWithPartialName( 'System.Data' )

      from CLR.System.Data import DataSet

      Works

      Assembly.LoadWithPartialName( 'DevExpress.Utils.v6.2' )

      #Assembly.LoadWithPartialName( 'System.Data' )

      from CLR.System.Data import DataSet

Maksim

_________________________________________________
Python.NET mailing list - PythonDotNet@python.org
http://mail.python.org/mailman/listinfo/pythondotnet

Reply via email to