Click here to Skip to main content
15,886,106 members
Home / Discussions / C#
   

C#

 
QuestionMethod, Class, Object Reference Pin
C-P-User-312-Nov-12 10:31
C-P-User-312-Nov-12 10:31 
AnswerRe: Method, Class, Object Reference Pin
Pete O'Hanlon12-Nov-12 10:49
mvePete O'Hanlon12-Nov-12 10:49 
GeneralRe: Method, Class, Object Reference Pin
C-P-User-312-Nov-12 13:19
C-P-User-312-Nov-12 13:19 
GeneralRe: Method, Class, Object Reference Pin
Pete O'Hanlon12-Nov-12 20:15
mvePete O'Hanlon12-Nov-12 20:15 
GeneralRe: Method, Class, Object Reference Pin
J4amieC12-Nov-12 21:36
J4amieC12-Nov-12 21:36 
GeneralRe: Method, Class, Object Reference Pin
Pete O'Hanlon12-Nov-12 22:11
mvePete O'Hanlon12-Nov-12 22:11 
GeneralRe: Method, Class, Object Reference Pin
Simon_Whale12-Nov-12 22:06
Simon_Whale12-Nov-12 22:06 
GeneralRe: Method, Class, Object Reference Pin
fjdiewornncalwe13-Nov-12 3:49
professionalfjdiewornncalwe13-Nov-12 3:49 
This is actually meant as a comment.
It appears that you are using a very non-standard naming convention in your code. This actually makes the code much more difficult for a another developer to read as we all become accustomed to specific casing and naming methodologies. It's all good if this is just something you are writing for yourself, but habits are hard to break and if you work on commercial code with naming schemes like this, you may run into some developers who won't take kindly to it.
You should take a look at Camel Casing[^]. This is the most common way that CSharp developers write code, and if used correctly will be much appreciated by other developers who will have to look at your code sometime. I have taken the liberty of taking one of your methods above to show you what I mean. Cheers.
C#
namespace GeorgeWashington
{
    public class TheUserClickedAButtonCalled
    {
        internal void StartDataCommand04()
        {
            UART.send_command 
                (////The Error Is Flagged right here
                ProtocolPackets01.BARN_Command04StartDataFlood,
                0,
                ProtocolPackets01.BARNCommand04StartDataFlood.Length
                )
                ;
        }
    }
}

I wasn't, now I am, then I won't be anymore.

GeneralRe: Method, Class, Object Reference Pin
C-P-User-313-Nov-12 8:06
C-P-User-313-Nov-12 8:06 
QuestionAdd a Menu Item to the operating system contextmenu Pin
benzarabel12-Nov-12 9:48
benzarabel12-Nov-12 9:48 
AnswerRe: Add a Menu Item to the operating system contextmenu Pin
Eddy Vluggen12-Nov-12 10:44
professionalEddy Vluggen12-Nov-12 10:44 
GeneralRe: Add a Menu Item to the operating system contextmenu Pin
benzarabel12-Nov-12 10:51
benzarabel12-Nov-12 10:51 
GeneralRe: Add a Menu Item to the operating system contextmenu Pin
Eddy Vluggen12-Nov-12 11:18
professionalEddy Vluggen12-Nov-12 11:18 
QuestionTips for a new C# designer... Pin
Maurice Lantier12-Nov-12 9:28
Maurice Lantier12-Nov-12 9:28 
AnswerRe: Tips for a new C# designer... PinPopular
Eddy Vluggen12-Nov-12 10:40
professionalEddy Vluggen12-Nov-12 10:40 
GeneralRe: Tips for a new C# designer... Pin
Maurice Lantier12-Nov-12 10:54
Maurice Lantier12-Nov-12 10:54 
GeneralRe: Tips for a new C# designer... Pin
Eddy Vluggen12-Nov-12 11:18
professionalEddy Vluggen12-Nov-12 11:18 
AnswerRe: Tips for a new C# designer... Pin
BobJanova12-Nov-12 22:23
BobJanova12-Nov-12 22:23 
GeneralRe: Tips for a new C# designer... Pin
Maurice Lantier14-Nov-12 10:19
Maurice Lantier14-Nov-12 10:19 
AnswerRe: Tips for a new C# designer... Pin
S Godrich12-Nov-12 23:48
S Godrich12-Nov-12 23:48 
GeneralRe: Tips for a new C# designer... Pin
Maurice Lantier14-Nov-12 10:15
Maurice Lantier14-Nov-12 10:15 
Questionwindows form design Pin
Rajeevhyd12-Nov-12 7:09
Rajeevhyd12-Nov-12 7:09 
AnswerRe: windows form design Pin
Eddy Vluggen12-Nov-12 10:34
professionalEddy Vluggen12-Nov-12 10:34 
GeneralNamed Pipes app lifetime pipe. Pin
Nemo196612-Nov-12 6:51
Nemo196612-Nov-12 6:51 
GeneralRe: Named Pipes app lifetime pipe. Pin
Dave Kreskowiak12-Nov-12 7:23
mveDave Kreskowiak12-Nov-12 7: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.