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

C#

 
AnswerRe: text parsing or automatic segmentation of text in c# Pin
#realJSOP29-Dec-08 9:05
mve#realJSOP29-Dec-08 9:05 
AnswerRe: text parsing or automatic segmentation of text in c# Pin
Colin Angus Mackay29-Dec-08 10:19
Colin Angus Mackay29-Dec-08 10:19 
JokeRe: text parsing or automatic segmentation of text in c# Pin
Pete O'Hanlon29-Dec-08 10:23
mvePete O'Hanlon29-Dec-08 10:23 
GeneralRe: text parsing or automatic segmentation of text in c# Pin
Colin Angus Mackay29-Dec-08 11:52
Colin Angus Mackay29-Dec-08 11:52 
GeneralRe: text parsing or automatic segmentation of text in c# Pin
lawrenceinba29-Dec-08 14:50
lawrenceinba29-Dec-08 14:50 
GeneralRe: text parsing or automatic segmentation of text in c# Pin
Colin Angus Mackay29-Dec-08 14:59
Colin Angus Mackay29-Dec-08 14:59 
QuestionEvenly Space Points On Line Pin
linal29-Dec-08 5:47
linal29-Dec-08 5:47 
AnswerRe: Evenly Space Points On Line Pin
cechode29-Dec-08 7:06
cechode29-Dec-08 7:06 
How about this.
void AddMidpoints(List<Point> points) {
    for (int i = points.Count - 1; i >= 1; i -= 1) {
        points.Insert(i, midpoint(points[i], points[i - 1]));
    }
}
Point midpoint(Point p1, Point p2) {
    return new Point(((p1.X + p2.X) / 2), ((p1.Y + p2.Y) / 2));
}

GeneralRe: Evenly Space Points On Line Pin
Ben Fair29-Dec-08 10:08
Ben Fair29-Dec-08 10:08 
GeneralRe: Evenly Space Points On Line Pin
Luc Pattyn29-Dec-08 10:32
sitebuilderLuc Pattyn29-Dec-08 10:32 
QuestionAdd a Property for a UserControls Pin
Pedram Behroozi29-Dec-08 5:35
Pedram Behroozi29-Dec-08 5:35 
AnswerRe: Add a Property for a UserControls Pin
PIEBALDconsult29-Dec-08 5:43
mvePIEBALDconsult29-Dec-08 5:43 
GeneralRe: Add a Property for a UserControls Pin
Pedram Behroozi29-Dec-08 5:56
Pedram Behroozi29-Dec-08 5:56 
AnswerRe: Add a Property for a UserControls Pin
Member 447035429-Dec-08 8:00
Member 447035429-Dec-08 8:00 
GeneralRe: Add a Property for a UserControls Pin
Pedram Behroozi29-Dec-08 8:11
Pedram Behroozi29-Dec-08 8:11 
GeneralRe: Oops...! Something terrible!!! Pin
Pedram Behroozi29-Dec-08 8:36
Pedram Behroozi29-Dec-08 8:36 
AnswerRe: Oops...! Something terrible!!! Pin
Member 447035429-Dec-08 9:16
Member 447035429-Dec-08 9:16 
GeneralRe: Oops...! Something terrible!!! Pin
Wendelius29-Dec-08 9:19
mentorWendelius29-Dec-08 9:19 
GeneralRe: Oops...! Something terrible!!! Pin
Pedram Behroozi29-Dec-08 9:33
Pedram Behroozi29-Dec-08 9:33 
QuestionSharepoint question - Sending Email with a different FROM format? Pin
Archvile129-Dec-08 5:13
Archvile129-Dec-08 5:13 
QuestionC Pointers in C# Pin
Teuz29-Dec-08 4:19
Teuz29-Dec-08 4:19 
AnswerRe: C Pointers in C# Pin
Steve Hansen29-Dec-08 4:37
Steve Hansen29-Dec-08 4:37 
GeneralRe: C Pointers in C# Pin
Teuz29-Dec-08 4:51
Teuz29-Dec-08 4:51 
GeneralRe: C Pointers in C# Pin
Giorgi Dalakishvili29-Dec-08 5:06
mentorGiorgi Dalakishvili29-Dec-08 5:06 
AnswerRe: C Pointers in C# Pin
Ravadre29-Dec-08 4:53
Ravadre29-Dec-08 4:53 

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.