Field.SetByte(Object, SByte) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Sets the value of a field as a byte
on the specified object.
[Android.Runtime.Register("setByte", "(Ljava/lang/Object;B)V", "")]
public void SetByte (Java.Lang.Object? obj, sbyte b);
[<Android.Runtime.Register("setByte", "(Ljava/lang/Object;B)V", "")>]
member this.SetByte : Java.Lang.Object * sbyte -> unit
Parameters
- obj
- Object
the object whose field should be modified
- b
- SByte
the new value for the field of obj
being modified
- Attributes
Exceptions
if the object is null
and the field is non-static
if the object is not compatible with the declaring class
if this field is not accessible
Remarks
Sets the value of a field as a byte
on the specified object. This method is equivalent to set(obj, bObj)
, where bObj
is a Byte
object and bObj.byteValue() == b
.
Java documentation for java.lang.reflect.Field.setByte(java.lang.Object, byte)
.
Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.