예제 #1
0
파일: Ext.cs 프로젝트: LongJohnCoder/rd
 public static void PrintIfRemoteChange <T>([NotNull] this PrettyPrinter printer,
                                            [NotNull] ISource <T> entity,
                                            [NotNull] string entityName,
                                            [NotNull] params object[] values)
 {
     if (!entity.IsLocalChange())
     {
         printer.PrintAnyway(entityName, values);
     }
 }