Example #1
0
 /// <summary>
 /// Checks if the property exists on this class or a parent class.
 /// </summary>
 /// <param name="inProperty">The property to check if it is contained in this or a parent class.</param>
 /// <returns>True if the property exists on this or a parent class.</returns>
 public bool HasProperty(UProperty inProperty)
 {
     return(Native_UClass.HasProperty(Address, inProperty == null ? IntPtr.Zero : inProperty.Address));
 }