Flood.Vector.CSharpSignature C# (CSharp) Method

CSharpSignature() public method

public CSharpSignature ( CSharpTypePrinterContext ctx ) : string
ctx CSharpTypePrinterContext
return string
        public override string CSharpSignature(CSharpTypePrinterContext ctx)
        {
            var type = Type as TemplateSpecializationType;
            return string.Format("System.Collections.Generic.List<{0}>",
                type.Arguments[0].Type);
        }