如何使用 Google Contact API (c#) 在 Google Contact 中创建新的“自定义字段”?
我用了:
ExtendedProperty obj_ExtendedProperty = new ExtendedProperty();
obj_ExtendedProperty.Name = "Department";
obj_ExtendedProperty.Value = "Sales";
ContactEntry.ExtendedProperties.Add(obj_ExtendedProperty);
谢谢