Methods.TypePostfix Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets the string to place after the return type of a method.
public:
virtual property System::String ^ TypePostfix { System::String ^ get(); };
public:
virtual property Platform::String ^ TypePostfix { Platform::String ^ get(); };
public virtual string TypePostfix { get; }
member this.TypePostfix : string
Public Overridable ReadOnly Property TypePostfix As String
Property Value
The string to use after a method's type.
Remarks
The value returned from this property is used to format the method signatures that appear in the IntelliSense method tip operation.
This property is used if the language requires some fixed text to appear after the method's return type.
Return null
if you do not need to post-fix the type with any fixed text.
The base property returns null
.