Click here to Skip to main content
15,921,884 members
Home / Discussions / C#
   

C#

 
AnswerRe: DotNet ThreadPool not meant for long running jobs? Pin
Keith Barrow3-Dec-10 0:21
professionalKeith Barrow3-Dec-10 0:21 
GeneralRe: DotNet ThreadPool not meant for long running jobs? Pin
devvvy3-Dec-10 15:20
devvvy3-Dec-10 15:20 
GeneralRe: DotNet ThreadPool not meant for long running jobs? [modified] Pin
Keith Barrow3-Dec-10 21:46
professionalKeith Barrow3-Dec-10 21:46 
GeneralThank you guys Pin
devvvy4-Dec-10 13:54
devvvy4-Dec-10 13:54 
AnswerRe: DotNet ThreadPool not meant for long running jobs? Pin
#realJSOP3-Dec-10 4:06
professional#realJSOP3-Dec-10 4:06 
AnswerRe: DotNet ThreadPool not meant for long running jobs? [modified] Pin
Luc Pattyn3-Dec-10 17:05
sitebuilderLuc Pattyn3-Dec-10 17:05 
AnswerRe: DotNet ThreadPool not meant for long running jobs? Pin
Pete O'Hanlon3-Dec-10 20:56
mvePete O'Hanlon3-Dec-10 20:56 
QuestionCorordinate problem when load the image in picture box in zoom mode Pin
Nivas822-Dec-10 22:10
Nivas822-Dec-10 22:10 
AnswerRe: Corordinate problem when load the image in picture box in zoom mode Pin
Luc Pattyn3-Dec-10 0:51
sitebuilderLuc Pattyn3-Dec-10 0:51 
QuestionNeeded to Create a Scrolling Ticker with LinkLabel Functionality Pin
honeyashu2-Dec-10 20:04
honeyashu2-Dec-10 20:04 
AnswerRe: Needed to Create a Scrolling Ticker with LinkLabel Functionality Pin
Jacob D Dixon4-Dec-10 3:23
Jacob D Dixon4-Dec-10 3:23 
QuestionListView in C#.net Pin
mathy2-Dec-10 19:52
mathy2-Dec-10 19:52 
AnswerRe: ListView in C#.net Pin
Hiren solanki2-Dec-10 19:54
Hiren solanki2-Dec-10 19:54 
AnswerRe: ListView in C#.net Pin
Sathesh Sakthivel2-Dec-10 21:24
Sathesh Sakthivel2-Dec-10 21:24 
GeneralRe: ListView in C#.net Pin
Hiren solanki2-Dec-10 21:42
Hiren solanki2-Dec-10 21:42 
GeneralRe: ListView in C#.net Pin
phil.o3-Dec-10 2:33
professionalphil.o3-Dec-10 2:33 
GeneralRe: ListView in C#.net Pin
Hiren solanki3-Dec-10 2:37
Hiren solanki3-Dec-10 2:37 
QuestionLinq in 3.0 Framework Pin
Tiger4562-Dec-10 18:57
Tiger4562-Dec-10 18:57 
In my smart client application (3.0 Framework) i would like to use Linq.

Whe i tried below code.
string[] names = { "Burke", "Connor", "Frank", 
                         "Everett", "Albert", "George",
                         "Harris", "David" };

            IEnumerable<string> expr = from s in names
                                       where s.Length == 5
                                       orderby s
                                       select s.ToUpper();

            foreach (string item in expr) { Console.WriteLine(item); }


This code is throwing an error message

Could not find an implementation of the query pattern for source type 'string[]'. 'Where' not found. Are you missing a reference to 'System.Core.dll' or a using directive for 'System.Linq'?

i have used System.Linq directive in code but unable to add 'System.Core.dll' becuse as it disable. As per the requirement we need to stick on with 3.0 Framework. Any other way to do it.
AnswerRe: Linq in 3.0 Framework Pin
Hiren solanki2-Dec-10 19:21
Hiren solanki2-Dec-10 19:21 
GeneralRe: Linq in 3.0 Framework Pin
Tiger4562-Dec-10 20:50
Tiger4562-Dec-10 20:50 
AnswerRe: Linq in 3.0 Framework Pin
Hiren solanki2-Dec-10 21:44
Hiren solanki2-Dec-10 21:44 
GeneralRe: Linq in 3.0 Framework Pin
Tiger4562-Dec-10 21:57
Tiger4562-Dec-10 21:57 
QuestionSave and Save as [modified] Pin
squerley2-Dec-10 10:20
squerley2-Dec-10 10:20 
AnswerRe: Save and Save as Pin
Pete O'Hanlon2-Dec-10 10:36
mvePete O'Hanlon2-Dec-10 10:36 
GeneralRe: Save and Save as Pin
GenJerDan2-Dec-10 11:25
GenJerDan2-Dec-10 11:25 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.