Santosh Kumar  Kotnala
what is diffreence between Out and ref in C# ?
By Santosh Kumar Kotnala in ASP.NET on Jan 31 2011
  • Shivprasad
    Feb, 2011 4

    This is a great .NET Interview question and also very very confusing question. By default  parameters are always passed by value to methods and functions.If you want to pass data byref then you can use either out or ref keyword.

    There are two big difference between these keywords one is the way data is passed between the caller code and method and second who is responsible for initialization.

    Way the data is passed(directional or bi-directional)
    ===========================================================================================
    When you use OUT data is passed only one way i.e from the method to the caller code.
    When you use REF , Data can be passed from the called to the method and also vice versa.

    Who initializes data
    ===========================================================================================

    In OUT the variables value has to be intialized in the method. In REF the value is initialized outside the method by the caller.

    The most important thing the interviewer will like to hear from you When to use when
    ============================================================================================
    OUT will be used when you want data to be passed only from the method to the caller.
    REF will be used when you want data to be passed from the called to the method and also vice versa.

    My 100 .NET Interview questions and answers

    • 0
  • Tej Maurya
    Feb, 2011 1

    in ref we have to initialize variable before using but 

    in out we do not need to initilize the variable before using it

    • 0


Most Popular Job Functions


MOST LIKED QUESTIONS