TypeReference.GetPlainType C# (CSharp) Method

GetPlainType() public method

public GetPlainType ( ) : string
return string
	public string GetPlainType ()
	{
		if (IsPointer)
			return Value.Substring (0, Value.Length - 1);

		return Value;
	}