// Useful for namespace Name string which can be a null handle.
 public static String GetStringOrNull(this ConstantStringValueHandle handle, MetadataReader reader)
 {
     if (reader.IsNull(handle))
         return null;
     return reader.GetConstantStringValue(handle).Value;
 }