Click here to Skip to main content
15,901,426 members

Comments by Rahul83 (Top 4 by date)

Rahul83 22-Feb-12 0:28am View    
So, it like that System.dll and System.Data.dll are loaded by CLR by default, inspite of there reference in manifest file as dependent assemblies?
Rahul83 21-Feb-12 22:58pm View    
I can see all the assembly dlls in generated app.exe.manifest file that I referred in my ConsoleApplications. It makes sense to me as well, because manifest need to have all reference of all dependent assemblies as well.

So I was expecting System.dll, System.Data.dll etc also to be present in manifest file as a dependent assembly, which is not the case, though I added them from Reference->AddReferences.
Rahul83 13-Jul-11 2:54am View    
Thanks Richard, link provided by you have an excellent description!!
Rahul83 5-Apr-11 3:57am View    
Thanks!!

But when i just copiend below sample code in VS inside some test() method:
System.Action<int, string=""> myAction += (number, format) => { System.Console.WriteLine(format, number);

I was showing error, "number" and "format" does not exist in current context.
But when i will do as below:
System.Action<int, string=""> myAction =null;
myAction += (number, format) => { System.Console.WriteLine(format, number);
It works (same as initial problem i posted)

Where m i doing worng?
Thanks!!