Click here to Skip to main content
15,899,937 members
Home / Discussions / C#
   

C#

 
GeneralRe: Invoke windows form Pin
Giorgi Dalakishvili23-Sep-08 21:26
mentorGiorgi Dalakishvili23-Sep-08 21:26 
GeneralRe: Invoke windows form Pin
Ethen23-Sep-08 21:30
Ethen23-Sep-08 21:30 
QuestionI need to Set Focus of ComboBox When User Click on TextBox Pin
Chetan Patel19-Sep-08 0:41
Chetan Patel19-Sep-08 0:41 
AnswerRe: I need to Set Focus of ComboBox When User Click on TextBox Pin
stancrm19-Sep-08 1:04
stancrm19-Sep-08 1:04 
Questionhashtable problem Pin
Mogaambo19-Sep-08 0:16
Mogaambo19-Sep-08 0:16 
AnswerRe: hashtable problem Pin
leppie19-Sep-08 0:38
leppie19-Sep-08 0:38 
Answerhashtable problem Pin
Chetan Patel19-Sep-08 0:43
Chetan Patel19-Sep-08 0:43 
AnswerRe: hashtable problem Pin
Pete O'Hanlon19-Sep-08 2:32
mvePete O'Hanlon19-Sep-08 2:32 
.NET 2 introduced the Dictionary generic, so this would be achieved using:
Dictionary<string,int> strTemp=new Dictionary<string,int>(); 
The only thing to watch out for is how to access it. In order to iterate over the Dictionary, you use the KeyValuePair generic, so you would end up with something like this:
foreach (KeyValuePair&lt;string,int&gt; item in strTemp)
{
}


Deja View - the feeling that you've seen this post before.

My blog | My articles | MoXAML PowerToys



AnswerRe: hashtable problem Pin
Guffa19-Sep-08 2:34
Guffa19-Sep-08 2:34 
QuestionReason for System.StackOverflowException Pin
tauras8119-Sep-08 0:06
tauras8119-Sep-08 0:06 
AnswerRe: Reason for System.StackOverflowException Pin
J4amieC19-Sep-08 0:15
J4amieC19-Sep-08 0:15 
AnswerRe: Reason for System.StackOverflowException Pin
Chetan Patel19-Sep-08 0:46
Chetan Patel19-Sep-08 0:46 
QuestionPrintPageEventHandler issue Pin
laziale18-Sep-08 23:41
laziale18-Sep-08 23:41 
QuestionStoring data in DataTable Pin
Muammar©18-Sep-08 23:12
Muammar©18-Sep-08 23:12 
AnswerThe other way round Pin
Muammar©19-Sep-08 0:44
Muammar©19-Sep-08 0:44 
AnswerRe: Storing data in DataTable Pin
Chetan Patel19-Sep-08 0:54
Chetan Patel19-Sep-08 0:54 
QuestionHow to get app.config value at .net framework 2.0? Pin
mimimimilaw18-Sep-08 23:00
mimimimilaw18-Sep-08 23:00 
AnswerRe: How to get app.config value at .net framework 2.0? Pin
Giorgi Dalakishvili18-Sep-08 23:02
mentorGiorgi Dalakishvili18-Sep-08 23:02 
GeneralRe: How to get app.config value at .net framework 2.0? Pin
mimimimilaw18-Sep-08 23:34
mimimimilaw18-Sep-08 23:34 
GeneralRe: How to get app.config value at .net framework 2.0? Pin
Giorgi Dalakishvili18-Sep-08 23:40
mentorGiorgi Dalakishvili18-Sep-08 23:40 
QuestionCalendar's NextPrevStyle style dude Pin
Axelaser18-Sep-08 21:43
Axelaser18-Sep-08 21:43 
AnswerRe: Calendar's NextPrevStyle style dude Pin
leppie18-Sep-08 22:48
leppie18-Sep-08 22:48 
Questionquery Pin
lankaudaranga18-Sep-08 21:37
lankaudaranga18-Sep-08 21:37 
AnswerRe: query Pin
Guffa18-Sep-08 21:46
Guffa18-Sep-08 21:46 
AnswerRe: query Pin
Harvey Saayman19-Sep-08 0:29
Harvey Saayman19-Sep-08 0:29 

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.