public void create(
		string [] device_groups,
		ManagementDeviceGroupType [] types
	)
        {
            this.Invoke("create", new object [] {
                device_groups,
                types});
        }
 public System.IAsyncResult Begincreate(string [] device_groups,ManagementDeviceGroupType [] types, System.AsyncCallback callback, object asyncState)
 {
     return this.BeginInvoke("create", new object[] {
     device_groups,
     types}, callback, asyncState);
 }