Exemplo n.º 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();
        }
Exemplo n.º 2
0
 public void LoadTypeTest()
 {
     var p = new ProfileDescriptor();
     p.Load(typeof(IEqualization));
 }