Click here to Skip to main content
15,895,142 members
Home / Discussions / C#
   

C#

 
GeneralRe: Is this the same? Pin
BobJanova8-Aug-11 7:25
BobJanova8-Aug-11 7:25 
GeneralRe: Is this the same? Pin
stephen.darling8-Aug-11 7:40
stephen.darling8-Aug-11 7:40 
QuestionHow to delete some number in String format Pin
nassimnastaran7-Aug-11 9:50
nassimnastaran7-Aug-11 9:50 
AnswerRe: How to delete some number in String format Pin
PIEBALDconsult7-Aug-11 9:52
mvePIEBALDconsult7-Aug-11 9:52 
GeneralRe: How to delete some number in String format Pin
nassimnastaran7-Aug-11 9:55
nassimnastaran7-Aug-11 9:55 
GeneralRe: How to delete some number in String format Pin
PIEBALDconsult7-Aug-11 9:56
mvePIEBALDconsult7-Aug-11 9:56 
GeneralRe: How to delete some number in String format Pin
nassimnastaran7-Aug-11 10:01
nassimnastaran7-Aug-11 10:01 
GeneralRe: How to delete some number in String format Pin
Shameel7-Aug-11 23:37
professionalShameel7-Aug-11 23:37 
The string.Format method is used to get a string representation of an object in the specified format. It is not intended to change the value of its arguments. You can use
C#
int m = n % 100;
to get the last two digits of the number. If at all you have to use strings to achieve the same answer, you can do this
C#
string m = n.ToString().SubString(n.ToString().Length - 2);

GeneralRe: How to delete some number in String format Pin
nassimnastaran8-Aug-11 2:17
nassimnastaran8-Aug-11 2:17 
QuestionWho gets the priority to access when 2 users try to connect to? Pin
Gali19787-Aug-11 3:49
Gali19787-Aug-11 3:49 
AnswerRe: Who gets the priority to access when 2 users try to connect to? Pin
PIEBALDconsult7-Aug-11 5:46
mvePIEBALDconsult7-Aug-11 5:46 
AnswerRe: Who gets the priority to access when 2 users try to connect to? Pin
Not Active7-Aug-11 8:39
mentorNot Active7-Aug-11 8:39 
GeneralRe: Who gets the priority to access when 2 users try to connect to? Pin
PIEBALDconsult7-Aug-11 9:10
mvePIEBALDconsult7-Aug-11 9:10 
QuestionCopy data mysql/xml to access Pin
Oslancz6-Aug-11 22:06
Oslancz6-Aug-11 22:06 
AnswerRe: Copy data mysql/xml to access Pin
Mycroft Holmes6-Aug-11 22:52
professionalMycroft Holmes6-Aug-11 22:52 
AnswerRe: Copy data mysql/xml to access Pin
Abhinav S6-Aug-11 22:53
Abhinav S6-Aug-11 22:53 
QuestionRe: Copy data mysql/xml to access Pin
Keith Barrow7-Aug-11 1:39
professionalKeith Barrow7-Aug-11 1:39 
AnswerRe: Copy data mysql/xml to access Pin
PIEBALDconsult7-Aug-11 6:09
mvePIEBALDconsult7-Aug-11 6:09 
Questionsoftware for drawing my application forms design Pin
md_refay6-Aug-11 19:45
md_refay6-Aug-11 19:45 
AnswerRe: software for drawing my application forms design Pin
PIEBALDconsult6-Aug-11 20:20
mvePIEBALDconsult6-Aug-11 20:20 
GeneralRe: software for drawing my application forms design Pin
md_refay6-Aug-11 20:23
md_refay6-Aug-11 20:23 
GeneralRe: software for drawing my application forms design Pin
PIEBALDconsult6-Aug-11 20:24
mvePIEBALDconsult6-Aug-11 20:24 
GeneralRe: software for drawing my application forms design Pin
md_refay6-Aug-11 21:04
md_refay6-Aug-11 21:04 
GeneralRe: software for drawing my application forms design Pin
OriginalGriff6-Aug-11 21:40
mveOriginalGriff6-Aug-11 21:40 
GeneralRe: software for drawing my application forms design Pin
PIEBALDconsult7-Aug-11 5:44
mvePIEBALDconsult7-Aug-11 5:44 

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.