-
as seen on Stack Overflow
- Search for 'Stack Overflow'
Hi,
Here are my few questions
Can anyone explain what are the LINQ, Lambda, Anonymous Methods, Delegates meant?
How these 3 are different for each other?
Was one replaceable for another?
I didn't get any concrete answer when i did Googling
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
Is the recent movement towards anonymous methods/functions by mainstream languages like perl and C# something important, or a weird feature that violates OO principles?
Are recent libraries like the most recent version of Intel's Thread Building Blocks and Microsofts PPL and Linq that depend on such…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I know there are a couple of debates on this kind of thing....
At any rate, I have several cases where I need to populate combobox items based on enumerations returned from the WCF service.
In an effort to keep code clean, I started this approach. After looking into it more, I don't think the this…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
Here is the thing, I want to create a simply app that copy many files from one site, and move them to another; but using async methods and create a new thread.
private void button3_Click(object sender, RoutedEventArgs e)
{
//progressBar1.Maximum = _FileInfoArray.Count;
DispatcherTimer dt1…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
In Jeffrey Richter's "CLR via C#" (the .net 2.0 edtion page, 353) he says that as a self-discipline, he never makes anonymous functions longer than 3 lines of code in length. He cites mostly readability / understandability as his reasons. This suites me fine, because I already had a self-discipline…
>>> More