Click here to Skip to main content
15,881,754 members
Home / Discussions / C#
   

C#

 
GeneralPerformance : String and string !! Confusing, Pin
Nadia Monalisa28-Jan-08 13:26
Nadia Monalisa28-Jan-08 13:26 
GeneralRe: Performance : String and string !! Confusing, Pin
PIEBALDconsult28-Jan-08 13:45
mvePIEBALDconsult28-Jan-08 13:45 
GeneralRe: Performance : String and string !! Confusing, Pin
Paul Conrad28-Jan-08 14:06
professionalPaul Conrad28-Jan-08 14:06 
GeneralRe: Performance : String and string !! Confusing, Pin
Scott Dorman28-Jan-08 17:49
professionalScott Dorman28-Jan-08 17:49 
GeneralRe: Performance : String and string !! Confusing, Pin
Mohan Kumar28-Jan-08 20:26
Mohan Kumar28-Jan-08 20:26 
GeneralRe: Performance : String and string !! Confusing, Pin
Guffa28-Jan-08 20:47
Guffa28-Jan-08 20:47 
GeneralRe: Performance : String and string !! Confusing, Pin
leppie28-Jan-08 21:44
leppie28-Jan-08 21:44 
GeneralRe: Performance : String and string !! Confusing, Pin
Skippums29-Jan-08 7:49
Skippums29-Jan-08 7:49 
No difference when both can be used, as stated by a number of other posters. However, I have come accross two instances where you are required to use one or the other. The first is in the using statement:
using BaseType = System.UInt32; // Allowed
using BaseType = uint; // Invalid!
The second is in enumerations:
// Allowed
public enum foo : uint {
    ...
}
// Invalid!
public enum foo : System.UInt32 {
    ...
}
Other than these two examples, I have yet to discover any difference.

Sounds like somebody's got a case of the Mondays

-Jeff

GeneralRe: Performance : String and string !! Confusing, Pin
PIEBALDconsult29-Jan-08 8:39
mvePIEBALDconsult29-Jan-08 8:39 
GeneralRe: Performance : String and string !! Confusing, Pin
Skippums29-Jan-08 8:47
Skippums29-Jan-08 8:47 
GeneralRe: Performance : String and string !! Confusing, Pin
PIEBALDconsult29-Jan-08 12:22
mvePIEBALDconsult29-Jan-08 12:22 
GeneralProcess not ending when application is closed. Pin
Ylno28-Jan-08 13:01
Ylno28-Jan-08 13:01 
GeneralRe: Process not ending when application is closed. Pin
PIEBALDconsult28-Jan-08 13:04
mvePIEBALDconsult28-Jan-08 13:04 
GeneralRe: Process not ending when application is closed. Pin
Not Active28-Jan-08 13:07
mentorNot Active28-Jan-08 13:07 
GeneralRe: Process not ending when application is closed. Pin
Ylno28-Jan-08 13:16
Ylno28-Jan-08 13:16 
GeneralRe: Process not ending when application is closed. Pin
Stephen Hewitt28-Jan-08 17:10
Stephen Hewitt28-Jan-08 17:10 
GeneralRe: Process not ending when application is closed. Pin
leppie28-Jan-08 21:50
leppie28-Jan-08 21:50 
Generaldirectory chooser dialog Pin
Ylno28-Jan-08 12:56
Ylno28-Jan-08 12:56 
GeneralRe: directory chooser dialog Pin
darkelv28-Jan-08 13:03
darkelv28-Jan-08 13:03 
GeneralRe: directory chooser dialog Pin
Ylno28-Jan-08 13:19
Ylno28-Jan-08 13:19 
Generalthis is a test Pin
Member 462175228-Jan-08 12:25
Member 462175228-Jan-08 12:25 
Generalsdfasdf Pin
Member 462175228-Jan-08 12:19
Member 462175228-Jan-08 12:19 
Questioncan you give me a reference to do it (write CD) ? Pin
B.A28-Jan-08 11:46
B.A28-Jan-08 11:46 
GeneralMethod overloading! Pin
Spykraft28-Jan-08 11:18
Spykraft28-Jan-08 11:18 
GeneralRe: Method overloading! Pin
Ed.Poore28-Jan-08 12:32
Ed.Poore28-Jan-08 12:32 

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.