示例#1
0
 private static void WriteSqaleDescriptorFile(string filePath, IEnumerable<SqaleDescriptor> sqaleDescriptions)
 {
     var root = new SqaleRoot();
     root.Sqale.AddRange(sqaleDescriptions
         .Where(descriptor => descriptor != null));
     SerializeObjectToFile(filePath, root);
 }
示例#2
0
        private static void WriteSqaleDescriptorFile(string filePath, IEnumerable <SqaleDescriptor> sqaleDescriptions)
        {
            var root = new SqaleRoot();

            root.Sqale.AddRange(sqaleDescriptions
                                .Where(descriptor => descriptor != null));
            SerializeObjectToFile(filePath, root);
        }