In other words, if I have:
var ll = new LinkLabel();
ll.Text = "Some links go here.";
ll.Links.Add(0, 4); // Some
ll.Links.Add(11, 2); // go
Is there any method I can call to replace the text of the "Some" link with something else while keeping the "go" link the same.
I only want to know if there is a built-in method. This is not hard to code, I just don't want to reinvent the wheel.
I have, of course, consulted the LinkLabel documentation but sometimes methods hide in unexpected places.