コード例 #1
0
ファイル: CustomParameter.cs プロジェクト: mario-loza/School
 /// <summary>
 /// Initializes a new instance of the CustomParameter class with
 /// the values of the instance specified by the original parameter.
 /// </summary>
 /// <param name="original">A CustomParameter from which the current instance is initialized.</param>
 public CustomParameter(CustomParameter original)
     : base(original)
 {
     if ( original != null )
     {
         Value = original.Value;
     }
 }
コード例 #2
0
 /// <summary>
 /// Initializes a new instance of the CustomParameter class with
 /// the values of the instance specified by the original parameter.
 /// </summary>
 /// <param name="original">A CustomParameter from which the current instance is initialized.</param>
 public CustomParameter(CustomParameter original)
     : base(original)
 {
     if (original != null)
     {
         Value = original.Value;
     }
 }