Click here to Skip to main content
15,890,282 members
Home / Discussions / C#
   

C#

 
QuestionSMS Service Pin
hadad27-Jun-08 1:24
hadad27-Jun-08 1:24 
AnswerRe: SMS Service Pin
Simon P Stevens27-Jun-08 1:52
Simon P Stevens27-Jun-08 1:52 
GeneralRe: SMS Service Pin
Marek Grzenkowicz27-Jun-08 3:31
Marek Grzenkowicz27-Jun-08 3:31 
AnswerRe: SMS Service Pin
Giorgi Dalakishvili27-Jun-08 4:13
mentorGiorgi Dalakishvili27-Jun-08 4:13 
Questionarray Pin
cst_kvp27-Jun-08 0:38
cst_kvp27-Jun-08 0:38 
AnswerRe: array Pin
N a v a n e e t h27-Jun-08 0:54
N a v a n e e t h27-Jun-08 0:54 
GeneralRe: array Pin
Rao Rafique27-Jun-08 22:51
Rao Rafique27-Jun-08 22:51 
AnswerRe: array Pin
Simon P Stevens27-Jun-08 0:54
Simon P Stevens27-Jun-08 0:54 
You can't delete values from arrays, the only way is to recreate the array 1 size smaller and copy the values you want to keep. (Or just set the values you don't want to 0 or null and ignore them when you process the array).

Best thing to do is use a generic collection. collections can be resized by calling add/delete.

try:
List<PointF> t = new List<PointF>();


Simon

Questionstring.Empty Vs "" Pin
Abhijit Jana26-Jun-08 23:53
professionalAbhijit Jana26-Jun-08 23:53 
AnswerRe: string.Empty Vs "" Pin
N a v a n e e t h26-Jun-08 23:58
N a v a n e e t h26-Jun-08 23:58 
GeneralRe: string.Empty Vs "" Pin
Paw Jershauge27-Jun-08 0:10
Paw Jershauge27-Jun-08 0:10 
GeneralRe: string.Empty Vs "" Pin
N a v a n e e t h27-Jun-08 0:37
N a v a n e e t h27-Jun-08 0:37 
GeneralRe: string.Empty Vs "" Pin
S. Senthil Kumar27-Jun-08 4:27
S. Senthil Kumar27-Jun-08 4:27 
AnswerRe: string.Empty Vs "" [modified] Pin
Paw Jershauge27-Jun-08 0:10
Paw Jershauge27-Jun-08 0:10 
GeneralRe: string.Empty Vs "" Pin
Abhijit Jana27-Jun-08 0:40
professionalAbhijit Jana27-Jun-08 0:40 
GeneralRe: string.Empty Vs "" Pin
Guffa27-Jun-08 1:20
Guffa27-Jun-08 1:20 
GeneralRe: string.Empty Vs "" Pin
S. Senthil Kumar27-Jun-08 4:39
S. Senthil Kumar27-Jun-08 4:39 
AnswerRe: string.Empty Vs "" Pin
Christian Graus27-Jun-08 0:23
protectorChristian Graus27-Jun-08 0:23 
GeneralRe: string.Empty Vs "" Pin
N a v a n e e t h27-Jun-08 0:40
N a v a n e e t h27-Jun-08 0:40 
GeneralRe: string.Empty Vs "" Pin
Guffa27-Jun-08 1:31
Guffa27-Jun-08 1:31 
AnswerRe: string.Empty Vs "" Pin
Guffa27-Jun-08 1:43
Guffa27-Jun-08 1:43 
GeneralRe: string.Empty Vs "" Pin
Pete O'Hanlon27-Jun-08 1:53
mvePete O'Hanlon27-Jun-08 1:53 
GeneralRe: string.Empty Vs "" Pin
Mark Churchill27-Jun-08 16:39
Mark Churchill27-Jun-08 16:39 
AnswerRe: string.Empty Vs "" Pin
Jamal Mavadat27-Jun-08 5:34
Jamal Mavadat27-Jun-08 5:34 
Questionscalar variable Pin
j_tush26-Jun-08 23:52
j_tush26-Jun-08 23:52 

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.