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

Search:

Type: Posts; User: B3ertrnd

Search: Search took 0.03 seconds.

  1. Replies
    9
    Views
    6,535

    Re: Find all instances of type

    Thanks for the links. I'm a great believer in the old adage "what's in the micro is in the macro", so if I can get a really good understanding of the fundamentals then the complex stuff will just...
  2. Replies
    9
    Views
    6,535

    Re: Find all instances of type

    Ah, seems I'm an idiot. I'm pretty new to programming and this is more about me learning than anything else. I'd be interested in understanding how it would be done by looking at the heap. The points...
  3. Replies
    9
    Views
    6,535

    Re: Find all instances of type

    Apologies, I didn't mean the 'ref' keyword, I meant it to mean (store a reference to).
    For the stale object problem, perhaps you could implement IDisposable and have the instance remove itself from...
  4. Replies
    2
    Views
    543

    Re: Factories and Tracing

    Hey,
    I'm looking into the spring framework for both these things, so it's cool for now.

    Cheers,
  5. Replies
    9
    Views
    6,535

    Re: Find all instances of type

    Could you put a static list<ref classType> field in the class that's updated by the contructor every time a new instance is created?
    The constructor could add a reference to the list every time a...
  6. Replies
    11
    Views
    27,009

    Re: Counting words in each sentence using C#

    Apologies, with the correct 'code' tag, for readability.
    I'll delete the last reply when an admin gives me those rights!


    class Program
    {
    static void Main(string[] args)
    {
    const string...
  7. Replies
    11
    Views
    27,009

    Re: Counting words in each sentence using C#

    Hey,
    I'm just learning to program, so I've tried to add some of the cool stuff that I've learned into this (LINQ, Yield, etc)


    class Program
    {
    static void Main(string[] args)
    ...
  8. Replies
    2
    Views
    543

    Re: Factories and Tracing

    I'm using .net version 4.

    Does anybody know how to edit posts?
  9. Re: How would I make a Parse Currency Function?

    Hey,

    I'm a noob programmer so this is likely to be off the mark, but at-least I can do a bit of learning and maybe even help the odd person if I pickup any questions that I think I can answer.
    ...
  10. Replies
    2
    Views
    543

    Factories and Tracing

    Hi all,

    Apologies if this could've been answered with a 'search' but I'm not an experienced programmer and don't know exactly what I'm even looking for. I do know that there are 'many different...
Results 1 to 10 of 10





Click Here to Expand Forum to Full Width

Featured