Search results for query: *

  1. jmfrank63

    Question DateTime as Optional Parameter in Constructor

    Thanks for the advice. I immediately asked Google for the reason and it came up with the following from Stackoverflow: So I did what you proposed. It's not easy to return to a static typed language when you got used to the freedom python gives you. But I like the .NET Framework. Make things...
  2. jmfrank63

    Question DateTime as Optional Parameter in Constructor

    Yes, but I must admit I don't like binaries except for the executable. Hinders people from looking into things. I use ArrayList instead and it suits just fine.
  3. jmfrank63

    Question DateTime as Optional Parameter in Constructor

    Everything looks fine, I was concerned, for serialization is a little picky about what types to support. For instance collection class is not supported... but overloading seems to be no problem. How to mark the question as solved? Thanks again.
  4. jmfrank63

    Question DateTime as Optional Parameter in Constructor

    Thank you Ian and Lotok, I will try overloading at once. I didn't come up with this yet, but I hope the class is still XML serializable. I'll inform you on the results. Nevertheless this forum seems to be just the right place for my questions. I asked the same question yesterday on stackoverflow...
  5. jmfrank63

    Question DateTime as Optional Parameter in Constructor

    Hello Community, this is my first time and my first question, so if I do something wrong please notify me. I am trying to build a class with a date as optional parameter. If none is given the current date shall be assumed. Since optional parameters require a default value I tried the...
Back
Top