public static bool IsReadWrite(this BasePropertyDeclarationSyntax @this)
 {
     if (@this == null)
     {
         throw new ArgumentNullException(nameof(@this));
     }
     return(@this.Getter() != null && @this.Setter() != null);
 }