コード例 #1
0
ファイル: WorkspaceModel.cs プロジェクト: ke-yu/Dynamo
 private static bool ShouldProceedWithRecording(List<ModelBase> models)
 {
     if (null == models) 
         return false;
     
     models.RemoveAll(x => x == null);
     return models.Count > 0;
 }
コード例 #2
0
ファイル: WorkspaceModel.cs プロジェクト: heegwon/Dynamo
        private static bool ShouldProceedWithRecording(List<ModelBase> models)
        {
            if (null != models)
                models.RemoveAll((x) => (x == null));

            return (null != models && (models.Count > 0));
        }