I have a project in VB6 that I need to convert to C#, this project uses the TextWidth Method and I replaced it with TextRenderer.MeasureText Method in C# which return the size in pixel but I need to convert it to twips for other uses, How can I do this?
You can write an extension that holds the logic to convert pixels to twips. See How do I convert Twips to Pixels in .NET? For an example on how to do it.