Your list item 'li' has the properties of 'Text' and 'Value'.
You will need to create the link manually, similar to the following:
string link = "<a href=\"#\">link text</a>";
and set the 'Text' of the ListItem to the string.
If this is something you do often, it may be worth creating a new class that inherits from ListItem that accepts two parameters in it's constructor (url and text) and automates the creation of the link.
Edit: As indicated by another answer, you may also want to use the BulletedList class's DisplayMode of 'Hyperlink'. If you take this route, you can use the ListItem's 'Value' property to specify the URL the link should go to, and the 'Text' property to specify the link text.