Click here to Skip to main content
15,888,286 members
Home / Discussions / C#
   

C#

 
AnswerRe: Problems with a forms designer [modified] Pin
LongRange.Shooter28-Jul-06 9:20
LongRange.Shooter28-Jul-06 9:20 
Questionalternative to structs? Pin
honeyman_can26-Jul-06 10:12
honeyman_can26-Jul-06 10:12 
AnswerIf you are worried about performance Pin
Ennis Ray Lynch, Jr.26-Jul-06 10:45
Ennis Ray Lynch, Jr.26-Jul-06 10:45 
GeneralRe: If you are worried about performance Pin
honeyman_can27-Jul-06 7:59
honeyman_can27-Jul-06 7:59 
AnswerRe: alternative to structs? Pin
LongRange.Shooter28-Jul-06 9:33
LongRange.Shooter28-Jul-06 9:33 
QuestionHow to deploy project with SQL Server 2005 express? Pin
_awatts26-Jul-06 9:55
_awatts26-Jul-06 9:55 
Question.GetFiles(?) Pin
HahnTech26-Jul-06 9:25
HahnTech26-Jul-06 9:25 
AnswerRe: .GetFiles(?) Pin
Dustin Metzgar26-Jul-06 9:55
Dustin Metzgar26-Jul-06 9:55 
Nope, you're pretty limited in this regard. Maybe an alternative is to pair up the collections:
List<FileInfo> lst = new List<FileInfo>();
lst.AddRange(di.GetFiles("*.txt"));
lst.AddRange(di.GetFiles("*.log"));
foreach (FileInfo fi in lst) { ... }</FileInfo></FileInfo>

If you want them to be in a particular order, then you can just call Sort().




Logifusion[^]
GeneralRe: .GetFiles(?) Pin
HahnTech26-Jul-06 12:17
HahnTech26-Jul-06 12:17 
QuestionEnterprise Library 2.0 and Database Trace Listener Pin
osamahmirza26-Jul-06 9:18
osamahmirza26-Jul-06 9:18 
QuestionCommunicating between forms Pin
jerrymei26-Jul-06 9:04
jerrymei26-Jul-06 9:04 
AnswerRe: Communicating between forms Pin
led mike26-Jul-06 9:11
led mike26-Jul-06 9:11 
Questiontrygetvalue? Please help Pin
honeyman_can26-Jul-06 8:46
honeyman_can26-Jul-06 8:46 
AnswerDo you have access to a computer? Pin
Ennis Ray Lynch, Jr.26-Jul-06 9:12
Ennis Ray Lynch, Jr.26-Jul-06 9:12 
AnswerRe: trygetvalue? Please help Pin
led mike26-Jul-06 9:15
led mike26-Jul-06 9:15 
QuestionADOX making me crazy, please help Pin
perry5926-Jul-06 8:45
perry5926-Jul-06 8:45 
QuestionGetting DataGridView checkbox checked event when it happens.... Pin
LongRange.Shooter26-Jul-06 8:44
LongRange.Shooter26-Jul-06 8:44 
AnswerRe: Getting DataGridView checkbox checked event when it happens.... Pin
led mike26-Jul-06 8:48
led mike26-Jul-06 8:48 
QuestionDetermining whether .Net 2.0 is installed or not? Pin
wasife26-Jul-06 7:36
wasife26-Jul-06 7:36 
Questionbuild 2003 from 2005 Pin
spin vector26-Jul-06 7:15
spin vector26-Jul-06 7:15 
AnswerRe: build 2003 from 2005 Pin
Steve Maier26-Jul-06 7:34
professionalSteve Maier26-Jul-06 7:34 
GeneralRe: build 2003 from 2005 Pin
spin vector26-Jul-06 7:54
spin vector26-Jul-06 7:54 
QuestionRegEx in C# to split on two delimiters Pin
Master Toothless One26-Jul-06 7:08
Master Toothless One26-Jul-06 7:08 
AnswerRe: RegEx in C# to split on two delimiters Pin
Dustin Metzgar26-Jul-06 8:20
Dustin Metzgar26-Jul-06 8:20 
GeneralRe: RegEx in C# to split on two delimiters Pin
Master Toothless One26-Jul-06 9:30
Master Toothless One26-Jul-06 9:30 

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.