CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: Emiene

Search: Search took 0.01 seconds.

  1. Replies
    3
    Views
    1,293

    Re: Software and Standards

    When using the term software, I think I am talking about the product and the process producing that product. So I guess you mean these two's quality.
    Software engineering is always based on...
  2. Replies
    1,585
    Views
    240,231

    Re: AAAh A joke(Lets share Jokes)

    men are monkeys.

    [edit] sorry, i am used to "normalization", "no-rules", "non-special", "borderless"...
    I never say a dirty word whenever i get mad because perhaps I am a monk
  3. Re: Why dont VC++ includes Design Patterns tools

    That as far as I can understand software design patterns doesn't seem to be a 'serious' suggestion. I suppose software patterns to be object oriented and computational concept based approaches to...
  4. Thread: object type

    by Emiene
    Replies
    6
    Views
    807

    Re: object type

    From the coder's viewpoint, it is for the substitution mechanisms to be much easier...
  5. Replies
    7
    Views
    1,050

    Re: Finding memory leaks

    Improper use of constructors and destructors
  6. Replies
    4
    Views
    2,986

    Re: foreach backward?

    Yes, I am completely agree that they can be accomplished with the use of generic code and have no denying for the fact that they are user-defined functions to fit their personal purpose in this way...
  7. Replies
    1
    Views
    775

    Re: Printing DB

    Apposition or repetition is needed for a complete logic in expression.
    static void displayDB<T>(db<T> m) where T: struct{
  8. Replies
    4
    Views
    2,986

    Re: foreach backward?

    From a personal perspective, foreach is to process a non-empty set's elements, and the cardinal order for output is not naturally determined beforehand in users'mind, you can look at what is inside...
  9. Replies
    3
    Views
    1,765

    Re: wrapping a c++ header file for use in c#

    You may have some misunderstandings about methodologies applied. I think the OP simply wanted to use a pure wrapping method to integrate his C++ struct into C# language. Smashing or dividing objects...
  10. Replies
    2
    Views
    733

    Re: This is really lame...

    Your program just won't compile due to its lack of string header file. I don't understand why it is eliminated for a problem's proposal.
    My mom told me that private keyword should be used for local...
  11. Replies
    9
    Views
    1,664

    Re: Polymorphism .. override

    Ohhh...,
    I guess it is based on the understanding of object architecture, MS people may think it is a base class ctor that should be auto-generated during coding stage to, at the same time, remind...
  12. Replies
    9
    Views
    1,664

    Re: Polymorphism .. override

    Your inheritance hierarchy might have some problem

    class Base{
    public virtual void funfoo(){
    Console.WriteLine("funfoo Base");
    }
    }

    class Derive1 : Base{
    public override...
  13. Thread: Compiler error

    by Emiene
    Replies
    4
    Views
    1,112

    Re: Compiler error

    SDK update version might have changed a lot in that header file itself and reinstalling the sdk will keep away the errors.
Results 1 to 13 of 14





Click Here to Expand Forum to Full Width

Featured