BitExtensionsToBinaryString(UInt32) Method

Encodes value as binary, i.e., a string of bit values (0 or 1).

Definition

Namespace: Gemstone.Numeric.BitExtensions
Assembly: Gemstone.Numeric (in Gemstone.Numeric.dll) Version: 1.0.160 -- Release Build+79afb0c87bd1bdc550b0321e3623ddc7648c3bfe
public static string ToBinaryString(
	this uint value
)

Parameters

value  UInt32
Integer value to encode.

Return Value

String
Binary encoding of value.

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type UInt32. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).

See Also