コード例 #1
0
 private void Assign(IKeepSynchronizedMetadata destination, IKeepSynchronizedMetadata source)
 {
     destination.Source  = source.Source;
     destination.Target  = source.Target;
     destination.Context = source.Context;
 }
コード例 #2
0
 private static string GetComputationKey(IKeepSynchronizedMetadata ks)
 {
     return(ks.Source + "/" + ks.Target);
 }
コード例 #3
0
 private bool SameValue(IKeepSynchronizedMetadata x, IKeepSynchronizedMetadata y)
 {
     return(x.Source == y.Source && x.Target == y.Target && x.Context == y.Context);
 }