saraawq
(Sara)
1
Hi all,
How to I convert a string to lowercase?
I tried using culture but it keeps throwing me this error?
CultureInfo.CurrentCulture.TextInfo.ToTitleCase(firstDept)
I read and they say I have to import namespace, but which namespace do I need to import?
Thanks!

1 Like
AshwinS2
(Ashwin S)
2
hi @saraawq
You need to import namespace as System.Globalisation.CultureInfo
Check it and let us Know
Thanks
Ashwin S
1 Like
AshwinS2
(Ashwin S)
3
HI @saraawq
Check it in types and enter the value as CultureInfo
Thanks
Ashwin S
arivu96
(Arivazhagan A)
4
strvalue.ToLower()
Import namespace in the import tab System.Globalisation
Regards,
Arivu
3 Likes