示例#1
0
文件: Part.cs 项目: aklefdal/TinyMVVM
        public Part(Type type)
        {
            if (type == null) throw new ArgumentNullException();

            Type = type;
            Metadata = new PartMetadata(this);
        }
示例#2
0
文件: Part.cs 项目: aklefdal/TinyMVVM
        public Part(Type type)
        {
            if (type == null)
            {
                throw new ArgumentNullException();
            }

            Type     = type;
            Metadata = new PartMetadata(this);
        }