Click here to Skip to main content
15,918,275 members
Home / Discussions / C#
   

C#

 
AnswerRe: Data Validation Question Pin
half-life17-Jul-08 5:49
half-life17-Jul-08 5:49 
AnswerRe: Data Validation Question Pin
Alan Balkany17-Jul-08 7:35
Alan Balkany17-Jul-08 7:35 
AnswerRe: Data Validation Question Pin
Garrett Pauls17-Jul-08 7:42
Garrett Pauls17-Jul-08 7:42 
GeneralRe: Data Validation Question Pin
Harvey Saayman17-Jul-08 20:07
Harvey Saayman17-Jul-08 20:07 
AnswerRe: Data Validation Question Pin
Green Fuze18-Jul-08 2:33
Green Fuze18-Jul-08 2:33 
GeneralRe: Data Validation Question Pin
Harvey Saayman18-Jul-08 4:54
Harvey Saayman18-Jul-08 4:54 
Questioncreate your own version of arraylist in c#?? Pin
lolla200617-Jul-08 4:42
lolla200617-Jul-08 4:42 
AnswerRe: create your own version of arraylist in c#?? Pin
Christian Graus17-Jul-08 4:58
protectorChristian Graus17-Jul-08 4:58 
GeneralRe: create your own version of arraylist in c#?? Pin
lolla200617-Jul-08 9:39
lolla200617-Jul-08 9:39 
GeneralRe: create your own version of arraylist in c#?? Pin
z3irr19-Jul-08 0:56
z3irr19-Jul-08 0:56 
AnswerRe: create your own version of arraylist in c#?? Pin
Dan Neely17-Jul-08 5:05
Dan Neely17-Jul-08 5:05 
AnswerRe: create your own version of arraylist in c#?? Pin
Dan Neely17-Jul-08 5:07
Dan Neely17-Jul-08 5:07 
JokeRe: create your own version of arraylist in c#?? Pin
Luc Pattyn17-Jul-08 6:02
sitebuilderLuc Pattyn17-Jul-08 6:02 
GeneralRe: create your own version of arraylist in c#?? Pin
Dan Neely17-Jul-08 6:48
Dan Neely17-Jul-08 6:48 
GeneralRe: create your own version of arraylist in c#?? Pin
DaveyM6917-Jul-08 10:04
professionalDaveyM6917-Jul-08 10:04 
GeneralRe: create your own version of arraylist in c#?? Pin
lolla200617-Jul-08 9:59
lolla200617-Jul-08 9:59 
GeneralRe: create your own version of arraylist in c#?? [modified] Pin
lolla200617-Jul-08 9:51
lolla200617-Jul-08 9:51 
AnswerRe: create your own version of arraylist in c#?? Pin
Guffa17-Jul-08 9:00
Guffa17-Jul-08 9:00 
GeneralRe: create your own version of arraylist in c#?? Pin
lolla200617-Jul-08 9:55
lolla200617-Jul-08 9:55 
GeneralRe: create your own version of arraylist in c#?? Pin
Guffa17-Jul-08 11:08
Guffa17-Jul-08 11:08 
That's pretty basic:

1. Locate the node before the range and the node after the range (just loop and count).
2. Make the node after the range the next node for the node before the range, and make the node before the range the previous node for the node after the range.

You have to check for two special cases, though. If the first node in the range is the first in the list, there is no node before, and you have to change the first variable of the list instead. If the last node in the range is the last node, there is no node after, and you have to change the last variable of the list instead.

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

GeneralRe: create your own version of arraylist in c#?? Pin
lolla200618-Jul-08 5:17
lolla200618-Jul-08 5:17 
GeneralRe: create your own version of arraylist in c#?? Pin
lolla200618-Jul-08 5:24
lolla200618-Jul-08 5:24 
GeneralRe: create your own version of arraylist in c#?? Pin
DaveyM6918-Jul-08 6:32
professionalDaveyM6918-Jul-08 6:32 
AnswerRe: create your own version of arraylist in c#?? Pin
Pete O'Hanlon17-Jul-08 10:03
mvePete O'Hanlon17-Jul-08 10:03 
GeneralRe: create your own version of arraylist in c#?? Pin
lolla200617-Jul-08 10:11
lolla200617-Jul-08 10:11 

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.