예제 #1
0
        /// <summary>
        /// Initializes a new instance.
        /// </summary>
        /// <param name="profile"></param>
        internal CommandDescriptor(ProfileDescriptor profile)
        {
            Contract.Requires<ArgumentNullException>(profile != null);

            this.profile = profile;
            this.parameters = new ParameterDescriptorCollection();
        }
예제 #2
0
 public void LoadTypeTest()
 {
     var p = new ProfileDescriptor();
     p.Load(typeof(IEqualization));
 }