/// <summary> /// Returns the C++ name of the property, including the _DEPRECATED suffix if the /// property is deprecated. /// </summary> /// <returns>C++ name of property</returns> public string GetNameCPP() { using (FStringUnsafe resultUnsafe = new FStringUnsafe()) { Native_UProperty.GetNameCPP(Address, ref resultUnsafe.Array); return(resultUnsafe.Value); } }