dotgnu-pnet-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Dotgnu-pnet-commits] CVS: pnetlib/runtime/System/Reflection/Emit ILGene


From: Gopal.V <address@hidden>
Subject: [Dotgnu-pnet-commits] CVS: pnetlib/runtime/System/Reflection/Emit ILGenerator.cs, 1.13, 1.14
Date: Wed, 23 Jul 2003 15:56:35 -0400

Update of /cvsroot/dotgnu-pnet/pnetlib/runtime/System/Reflection/Emit
In directory subversions:/tmp/cvs-serv32423/runtime/System/Reflection/Emit

Modified Files:
        ILGenerator.cs 
Log Message:
Fix minor bug in ILGenerator(EmitWriteLine)


Index: ILGenerator.cs
===================================================================
RCS file: 
/cvsroot/dotgnu-pnet/pnetlib/runtime/System/Reflection/Emit/ILGenerator.cs,v
retrieving revision 1.13
retrieving revision 1.14
diff -C2 -r1.13 -r1.14
*** ILGenerator.cs      23 Jul 2003 15:35:24 -0000      1.13
--- ILGenerator.cs      23 Jul 2003 19:56:30 -0000      1.14
***************
*** 1189,1193 ****
  
                                // Locate the "Console.WriteLine(String)" 
method.
!                               paramList = new Type [0];
                                paramList[0] = typeof(String);
                                method = typeof(Console).GetMethod("WriteLine", 
paramList);
--- 1189,1193 ----
  
                                // Locate the "Console.WriteLine(String)" 
method.
!                               paramList = new Type [1];
                                paramList[0] = typeof(String);
                                method = typeof(Console).GetMethod("WriteLine", 
paramList);





reply via email to

[Prev in Thread] Current Thread [Next in Thread]