Click here to Skip to main content
16,004,969 members
Home / Discussions / C#
   

C#

 
GeneralRe: Hello folks Pin
Stefan Troschuetz22-Mar-07 3:51
Stefan Troschuetz22-Mar-07 3:51 
GeneralRe: Hello folks Pin
MoeInsairat22-Mar-07 3:55
MoeInsairat22-Mar-07 3:55 
GeneralRe: Hello folks Pin
Stefan Troschuetz22-Mar-07 4:05
Stefan Troschuetz22-Mar-07 4:05 
GeneralRe: Hello folks Pin
Colin Angus Mackay22-Mar-07 3:46
Colin Angus Mackay22-Mar-07 3:46 
GeneralRe: Hello folks Pin
Pete O'Hanlon22-Mar-07 4:23
mvePete O'Hanlon22-Mar-07 4:23 
AnswerRe: Hello folks Pin
rah_sin22-Mar-07 1:29
professionalrah_sin22-Mar-07 1:29 
GeneralRe: Hello folks Pin
MoeInsairat22-Mar-07 1:30
MoeInsairat22-Mar-07 1:30 
GeneralRe: Hello folks Pin
Guffa22-Mar-07 2:24
Guffa22-Mar-07 2:24 
Alternatively without using strings at all:

public int CrossSum(int value) {
   int sum = 0;
   while (value > 0) {
      sum += value % 10;
      value /= 10;
   }
   return sum;
}

Frankly, Estarta, if you are applying for a job as a programmer, you should be able to write something simple as this yourself.

---
single minded; short sighted; long gone;

GeneralRe: Hello folks Pin
MoeInsairat22-Mar-07 3:13
MoeInsairat22-Mar-07 3:13 
QuestionRe: Hello folks Pin
David Crow22-Mar-07 7:31
David Crow22-Mar-07 7:31 
QuestionDrag-drop text from TextBox tot other TextBox Pin
Eelco U22-Mar-07 0:26
Eelco U22-Mar-07 0:26 
AnswerRe: Drag-drop text from TextBox tot other TextBox Pin
giddy_guitarist22-Mar-07 22:23
giddy_guitarist22-Mar-07 22:23 
Questionhow to place multiple coloms in a single CHECKEDLISTBOX... Pin
pashitech22-Mar-07 0:21
pashitech22-Mar-07 0:21 
QuestionHow to get string data from string image file using c# ? Pin
A.Venkata ramana22-Mar-07 0:18
A.Venkata ramana22-Mar-07 0:18 
AnswerRe: How to get string data from string image file using c# ? Pin
Colin Angus Mackay22-Mar-07 1:13
Colin Angus Mackay22-Mar-07 1:13 
GeneralRe: How to get string data from string image file using c# ? Pin
A.Venkata ramana22-Mar-07 3:21
A.Venkata ramana22-Mar-07 3:21 
GeneralRe: How to get string data from string image file using c# ? Pin
Russell Jones22-Mar-07 3:29
Russell Jones22-Mar-07 3:29 
Questionwindows service Pin
arkiboys21-Mar-07 23:38
arkiboys21-Mar-07 23:38 
AnswerRe: windows service Pin
coolestCoder21-Mar-07 23:49
coolestCoder21-Mar-07 23:49 
QuestionC# Advanced sales module Pin
shwetas21-Mar-07 23:19
shwetas21-Mar-07 23:19 
AnswerRe: C# Advanced sales module Pin
Ed.Poore21-Mar-07 23:20
Ed.Poore21-Mar-07 23:20 
AnswerRe: C# Advanced sales module Pin
Pete O'Hanlon21-Mar-07 23:37
mvePete O'Hanlon21-Mar-07 23:37 
QuestionInbound -tapi Pin
EISMANSI21-Mar-07 22:56
EISMANSI21-Mar-07 22:56 
AnswerRe: Inbound -tapi Pin
Ed.Poore21-Mar-07 23:19
Ed.Poore21-Mar-07 23:19 
GeneralRe: Inbound -tapi Pin
EISMANSI21-Mar-07 23:23
EISMANSI21-Mar-07 23:23 

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.