Click here to Skip to main content
15,921,606 members
Home / Discussions / C#
   

C#

 
GeneralRe: Pointers Performance Pin
Leslie Sanford28-Jul-07 5:27
Leslie Sanford28-Jul-07 5:27 
GeneralRe: Pointers Performance [modified] Pin
Robert Surtees28-Jul-07 6:34
Robert Surtees28-Jul-07 6:34 
GeneralRe: Pointers Performance Pin
Leslie Sanford28-Jul-07 7:55
Leslie Sanford28-Jul-07 7:55 
GeneralRe: Pointers Performance Pin
Guffa28-Jul-07 9:33
Guffa28-Jul-07 9:33 
GeneralRe: Pointers Performance Pin
Robert Surtees28-Jul-07 10:58
Robert Surtees28-Jul-07 10:58 
AnswerRe: Pointers Performance Pin
Guffa28-Jul-07 13:37
Guffa28-Jul-07 13:37 
AnswerMessage formatting question (expires on sunday) Pin
Luc Pattyn27-Jul-07 23:34
sitebuilderLuc Pattyn27-Jul-07 23:34 
GeneralRe: Message formatting question (expires on sunday) Pin
Leslie Sanford28-Jul-07 5:35
Leslie Sanford28-Jul-07 5:35 
Luc Pattyn wrote:
One of the factors is the tags that are present inside the < PRE> </PRE> block.
In your message the lines are separated by <br> tags; most other messages have
just regular newlines.

Could you please tell me how you get that, i.e. what tools you use, and how you go
about it. Thanks in advance.


The only thing I do differently is add a space to blank lines. I noticed in IE that if you simply copy code from VS and paste it into a message here at Code Project, blank lines are ignored. I pointed this out on the Suggestions message board, and someone showed me that by adding a space to the blank line, IE will added a break.

So instead of this:

fixed(float* pSource = data)
{
    float* p = pSource;

    // A blank line should come before the loop.
    for(int i = 0; i < Size; i++)
    {
        *p = 1.0f;
        p++;
    }
}


I add a space to the blank line to get this:

fixed(float* pSource = data)
{
    float* p = pSource;
 
    // A blank line should come before the loop.
    for(int i = 0; i < Size; i++)
    {
        *p = 1.0f;
        p++;
    }
}


[EDIT]As far as the tools I use, I just copy code out of Visual C# 2005 edition.[/EDIT]
GeneralRe: Message formatting question (expires on sunday) Pin
Luc Pattyn28-Jul-07 5:44
sitebuilderLuc Pattyn28-Jul-07 5:44 
GeneralRe: Message formatting question (expires on sunday) Pin
Leslie Sanford28-Jul-07 5:46
Leslie Sanford28-Jul-07 5:46 
GeneralRe: Message formatting question (expires on sunday) Pin
Luc Pattyn28-Jul-07 5:54
sitebuilderLuc Pattyn28-Jul-07 5:54 
GeneralRe: Message formatting question (expires on sunday) Pin
Leslie Sanford28-Jul-07 6:18
Leslie Sanford28-Jul-07 6:18 
GeneralRe: Message formatting question (expires on sunday) Pin
Luc Pattyn28-Jul-07 7:15
sitebuilderLuc Pattyn28-Jul-07 7:15 
QuestionInterActive javaScripte With Combobox html control Pin
Thaer Hamael27-Jul-07 15:53
Thaer Hamael27-Jul-07 15:53 
AnswerRe: InterActive javaScripte With Combobox html control Pin
Christian Graus27-Jul-07 16:54
protectorChristian Graus27-Jul-07 16:54 
Questionmigrating C to C# Pin
abstarsss27-Jul-07 14:00
abstarsss27-Jul-07 14:00 
AnswerRe: migrating C to C# Pin
Luc Pattyn27-Jul-07 14:19
sitebuilderLuc Pattyn27-Jul-07 14:19 
AnswerRe: migrating C to C# Pin
Christian Graus27-Jul-07 14:25
protectorChristian Graus27-Jul-07 14:25 
AnswerRe: migrating C to C# Pin
abstarsss27-Jul-07 14:41
abstarsss27-Jul-07 14:41 
QuestionHow can i know witch button was click ? Pin
Yanshof27-Jul-07 12:18
Yanshof27-Jul-07 12:18 
AnswerRe: How can i know witch button was click ? Pin
Christian Graus27-Jul-07 12:30
protectorChristian Graus27-Jul-07 12:30 
GeneralRe: How can i know witch button was click ? Pin
Yanshof27-Jul-07 12:33
Yanshof27-Jul-07 12:33 
GeneralRe: How can i know witch button was click ? Pin
Christian Graus27-Jul-07 12:59
protectorChristian Graus27-Jul-07 12:59 
AnswerRe: How can i know witch button was click ? Pin
Guffa27-Jul-07 12:35
Guffa27-Jul-07 12:35 
GeneralRe: How can i know witch button was click ? Pin
T_I_T_U_S27-Jul-07 12:40
T_I_T_U_S27-Jul-07 12:40 

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.