Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.
AppXmlLogWritter objParameterized = new AppXmlLogWritter(1234, "LogApplication", "LogFilepath");

AppXmlLogWritter objParmeterlessConstr = new AppXmlLogWritter();

objParameterized.WriteXmlLog("0", "LogFlag");

How do I get the default constructor value in this function?

share|improve this question

3 Answers

up vote 3 down vote accepted

Call constructor in your other constructor as shown below, by this()

    public AppXmlLogWritter(int intLogIDPrefix, string strLogApplication, string strLogFilePath)
          :this()
    {
        LogIDPrefix = intLogIDPrefix;
        LogApplication = strLogApplication;
        LogFilePath = strLogFilePath;
    }
share|improve this answer

To call the base constructor of a class from another constructor you use the this keyword like so:

public AppXmlLogWritter(int intLogIDPrefix, string strLogApplication, string strLogFilePath) 
    : this()
{ ... }
share|improve this answer

Not very clear what value you are talking about, but if you refer to randomNumber, you already have acsess to it inside class.

If the function you're going to call is the function that consumes type AppXmlLogWritter, you can define property like:

public class AppXmlLogWritter{


        public int RandomNumber {get;set}; //PUBLIC PROPERTY


        public AppXmlLogWritter()
        {
            Random random = new Random();
            RandomNumber = random.Next(9999);
            LogDateTime = DateTime.Now.ToString("yyyyMMdd HHmmss");
        }

     .... ..
     .... ..       

}
share|improve this answer
what about date time i m also getting date time blank in function – lax Oct 14 '12 at 9:36
@lax: if your problem is that your default ctor is not called, just add this() to declaration of parametrized ctor. – Tigran Oct 14 '12 at 9:46

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.