How can I write a code to read the extension of a My.Resources file?
My.Resources
Example:
if i have a file named
If you have the filename you just need:
sExt = System.IO.Path.GetExtension(sFileName)
Or:
sExt = sFileName.SubString(sFileName.LastIndexOf("."c))