How do I combine two char's into a single string?
It seems as I cannot for the life of me find out how to do it whatsoever.
Find centralized, trusted content and collaborate around the technologies you use most.
Learn more about CollectivesStack Internal
Knowledge at work
Bring the best of human thought and AI automation together at your work.
Explore Stack InternalHow do I combine two char's into a single string?
It seems as I cannot for the life of me find out how to do it whatsoever.
'A'.ToString() + 'B'.ToString()Simply useToStringmethod and then add the strings.