Click here to Skip to main content
15,891,951 members
Home / Discussions / C#
   

C#

 
Questionthe scrollbar in listview Pin
Seraph_summer16-Nov-08 20:34
Seraph_summer16-Nov-08 20:34 
AnswerRe: the scrollbar in listview Pin
Simon P Stevens17-Nov-08 0:09
Simon P Stevens17-Nov-08 0:09 
Questioni need inject a plug to a project Pin
chenli051316-Nov-08 20:29
chenli051316-Nov-08 20:29 
QuestionExcel file format saving as XMLSpreadsheet [modified] Pin
Sridaran Sriram16-Nov-08 19:54
Sridaran Sriram16-Nov-08 19:54 
AnswerRe: Excel file format saving as XMLSpreadsheet Pin
Wolfram Steinke20-Oct-09 18:58
Wolfram Steinke20-Oct-09 18:58 
GeneralRe: Excel file format saving as XMLSpreadsheet Pin
Sridaran Sriram21-Oct-09 7:17
Sridaran Sriram21-Oct-09 7:17 
Questionreg clr type.. Pin
madeline_veda16-Nov-08 19:42
madeline_veda16-Nov-08 19:42 
AnswerRe: reg clr type.. Pin
Guffa16-Nov-08 21:15
Guffa16-Nov-08 21:15 
There is no difference in performance between using the C# aliases or the CLR types, as they are not separate types. The int keyword for example is an alias for the System.Int32 type, so when you specify int, you are actually using the CLR type.

With a few rare exceptions there is absolutely no difference which you use. One of the exceptions are when you specify the underlying type for an enum:

enum test1 : int { Hello, There } // works<br />
enum test2 : System.Int32 { Hello, There } // CLR types are not allowed


Despite everything, the person most likely to be fooling you next is yourself.

QuestionHow and Where to store passwords,Credit card number,Username etc on my computer? Pin
Sandeep Kalra16-Nov-08 19:24
Sandeep Kalra16-Nov-08 19:24 
AnswerRe: How and Where to store passwords,Credit card number,Username etc on my computer? Pin
Muhammad Shahid Farooq16-Nov-08 19:31
professionalMuhammad Shahid Farooq16-Nov-08 19:31 
AnswerRe: How and Where to store passwords,Credit card number,Username etc on my computer? Pin
Shyam Bharath16-Nov-08 19:33
Shyam Bharath16-Nov-08 19:33 
QuestionCreate DataGridView at Runtime??? Pin
zeeShan anSari16-Nov-08 18:48
zeeShan anSari16-Nov-08 18:48 
AnswerRe: Create DataGridView at Runtime??? Pin
PavanPareta16-Nov-08 20:11
PavanPareta16-Nov-08 20:11 
GeneralRe: Create DataGridView at Runtime??? Pin
zeeShan anSari16-Nov-08 20:27
zeeShan anSari16-Nov-08 20:27 
GeneralRe: Create DataGridView at Runtime??? Pin
PavanPareta17-Nov-08 0:53
PavanPareta17-Nov-08 0:53 
Questioncreate a contact form Pin
nandababu16-Nov-08 18:13
nandababu16-Nov-08 18:13 
AnswerRe: create a contact form Pin
Giorgi Dalakishvili16-Nov-08 19:19
mentorGiorgi Dalakishvili16-Nov-08 19:19 
AnswerRe: create a contact form Pin
Reza Raad16-Nov-08 19:55
Reza Raad16-Nov-08 19:55 
QuestionIterate through custom collections using Reflection Pin
FyreWyrm16-Nov-08 16:45
FyreWyrm16-Nov-08 16:45 
AnswerRe: Iterate through custom collections using Reflection Pin
Gideon Engelberth16-Nov-08 17:59
Gideon Engelberth16-Nov-08 17:59 
QuestionCould not use ''; file already in use Pin
dec8216-Nov-08 16:00
dec8216-Nov-08 16:00 
AnswerRe: Could not use ''; file already in use Pin
N a v a n e e t h16-Nov-08 16:23
N a v a n e e t h16-Nov-08 16:23 
AnswerRe: Could not use ''; file already in use Pin
Paul Conrad16-Nov-08 17:45
professionalPaul Conrad16-Nov-08 17:45 
Questionxsl ? Pin
dec8216-Nov-08 15:56
dec8216-Nov-08 15:56 
AnswerRe: xsl ? Pin
Brij16-Nov-08 17:40
mentorBrij16-Nov-08 17:40 

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.