signature() public abstract method

public abstract signature ( ) : string
return string
Example #1
0
 //////////////////////////////////////////////////////////////////////////
 // Output
 //////////////////////////////////////////////////////////////////////////
 public ObjEncoder wType(Type t)
 {
     return w(t.signature());
 }
Example #2
0
 //////////////////////////////////////////////////////////////////////////
 // Constructor
 //////////////////////////////////////////////////////////////////////////
 internal NullableType(Type root)
 {
     m_root = root;
       m_signature = root.signature() + "?";
 }
Example #3
0
        //////////////////////////////////////////////////////////////////////////
        // Constructor
        //////////////////////////////////////////////////////////////////////////

        internal NullableType(Type root)
        {
            m_root      = root;
            m_signature = root.signature() + "?";
        }