System.UInt32.ToString C# (CSharp) Method

ToString() public method

public ToString ( ) : string
return string
        public override string ToString()
        {
            return int.CreateString(_value, false, false);
        }

Same methods

UInt32::ToString ( string format ) : string

Usage Example

Example #1
1
        public static INode AddNode(this IGraph myIGraph, UInt32 myUInt32Id)
        {
            if (myIGraph == null)
                throw new ArgumentNullException("myIGraph must not be null!");

            return myIGraph.AddNode(myUInt32Id.ToString());
        }
All Usage Examples Of System.UInt32::ToString