AsynqFramework.CodeWriter.CodeWriterBase.WritePrimitive C# (CSharp) Method

WritePrimitive() public method

public WritePrimitive ( long value ) : void
value long
return void
        public virtual void WritePrimitive(long value)
        {
            Output(value.ToString() + "L", TokenType.ConstantIntegral, (object)value);
        }

Same methods

CodeWriterBase::WritePrimitive ( byte value ) : void
CodeWriterBase::WritePrimitive ( char value ) : void
CodeWriterBase::WritePrimitive ( decimal value ) : void
CodeWriterBase::WritePrimitive ( double value ) : void
CodeWriterBase::WritePrimitive ( float value ) : void
CodeWriterBase::WritePrimitive ( int value ) : void
CodeWriterBase::WritePrimitive ( sbyte value ) : void
CodeWriterBase::WritePrimitive ( short value ) : void
CodeWriterBase::WritePrimitive ( string value ) : void
CodeWriterBase::WritePrimitive ( uint value ) : void
CodeWriterBase::WritePrimitive ( ulong value ) : void
CodeWriterBase::WritePrimitive ( ushort value ) : void