示例#1
0
 private static bool realisationsMatch(StringElement s, StringElement d)
 {
     if (s.getRealisation() == null)
     {
         return(d.getRealisation() == null);
     }
     else
     {
         return(s.getRealisation().Equals(d.getRealisation()));
     }
 }