Correct LINQ syntax for MinElements
Wed, 03 Sep 2008 08:49:32 -0700
What is the correct syntax for the Min Elements LINQ example on this
page :
http://msdn.microsoft.com/en-us/vcsharp/aa336747.aspx
(You will need to scroll down to find the Min Elements example, as the
link to this from the main page doesn't work)
*** Sent via Developersdex http://www.developersdex.com * ...
|
Novice question on Performance
Wed, 3 Sep 2008 08:39:30 -0700 (PDT)
I have been writing code for sometime, but I always get a hang up on
performance. I can't tell which implementation is good and which is
not. I have two scenarios down and I would like your expert opinion on
this
1. I have a situation where I need to read in the arguments passed to
the program and then validate ...
|
Question about System.Configuration.Install Installer class.
Wed, 3 Sep 2008 08:17:46 -0700 (PDT)
I have a new Installer class (derived from
System.Configuration.Install.Installer) and I have override methods
for Install, Uninstall, Commit. The MSI builder tool I'm using is
Advanced Installer, the resulting MSI successfully executes the code
inside my Installer classe Install and Uninstall methods...
My p ...
|
Deleting controls on a webpage
Wed, 03 Sep 2008 16:00:20 +0100
Hi,
I'm writing a site, and I've have several HTML controls, such as UL
elements, that are dynamically populated via the application I'm writing
in C#.
Sometimes there aren't any list items that need to be added to the UL
element, so it's rendered as
<ul id=foo"></ul>
on the page, with no other conten ...
|
Readonly propert of a Textbox
Wed, 3 Sep 2008 07:36:10 -0700
How do I override a Readonly property of a textbox control in a custom
Textbox control? ...
|
Optimal Code / Reading MSIL
Wed, 03 Sep 2008 16:23:19 +0200
hi @all,
I have these two getter:
public ArrayList I1
{
get
{
if (i1 == null)
{
i1 = new ArrayList();
}
return i1;
}
}
public ArrayList I2
{
get
{
i2 = i2 ?? new ArrayList();
return i2;
}
}
...
|
LINQ 101 query
Wed, 03 Sep 2008 07:08:18 -0700
This example :
http://msdn.microsoft.com/en-us/vcsharp/aa336759.aspx#allIndexed
Gives the error :
Delegate 'System.Func<int,bool>' does not take '2' arguments
Does anybody know what the updated version of this LINQ example should
be?
*** Sent via Developersdex http://www.developersdex.com *** ...
|
|
|
Book recommendations.
Wed, 3 Sep 2008 06:54:28 -0700 (PDT)
Hi.
I'm writing a simple, but not that simple server-client application in
C#. It seems to be working, but I'm not sure whether the server is
completely thread-safe, robust and scalable (handling many clients at
the same time like real-world servers). Currently I'm spawning a
thread for each client. I think the ...
|
Path to exe.config file
Wed, 3 Sep 2008 06:23:20 -0700 (PDT)
Hi,
I have some Settings in my exe.config file, for example the path to my
database. If the path to the database is changed, I wish to inform
them that they can update this path via the exe.config file. How do I
get the path of this file?
Thanks,
Barry
...
|
need a good job? C# .Net Developer Jr.-Mid level
Wed, 03 Sep 2008 06:14:19 -0700
Hey guys..I have an awesome opportunity in Cincinnati, OH for a Jr.
Application Developer. PLEASE let me know if you would be interested
:-)
*** Sent via Developersdex http://www.developersdex.com *** ...
|