예제 #1
0
 internal ParameterInfo[] FetchNonReturnParameters()
 {
     if (this.m_parameters == null)
     {
         this.m_parameters = ParameterInfo.GetParameters(this, this, this.Signature);
     }
     return(this.m_parameters);
 }
예제 #2
0
 internal override ParameterInfo[] GetParametersNoCopy()
 {
     if (this.m_parameters == null)
     {
         this.m_parameters = ParameterInfo.GetParameters(this, this, this.Signature);
     }
     return(this.m_parameters);
 }