signature() public abstract method

public abstract signature ( ) : string
return string
示例#1
0
文件: ObjEncoder.cs 项目: nomit007/f4
 //////////////////////////////////////////////////////////////////////////
 // Output
 //////////////////////////////////////////////////////////////////////////
 public ObjEncoder wType(Type t)
 {
     return w(t.signature());
 }
示例#2
0
 //////////////////////////////////////////////////////////////////////////
 // Constructor
 //////////////////////////////////////////////////////////////////////////
 internal NullableType(Type root)
 {
     m_root = root;
       m_signature = root.signature() + "?";
 }
示例#3
0
        //////////////////////////////////////////////////////////////////////////
        // Constructor
        //////////////////////////////////////////////////////////////////////////

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