Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Do upper case letters take up more memory? [closed]

Tags:

c#

I'm trying to create a file system that will handle lots of searching through the directories. Would it make a difference if I used upper or lower case letters in terms of memory usage on the folder names?

like image 748
Amadeus Bojiuc Avatar asked Jun 23 '15 18:06

Amadeus Bojiuc


1 Answers

Case does not affect the size of a character. Some characters take up different sizes in certain character encodings, but generally letters from the same language all have the same size.

like image 77
Jonathan Crosmer Avatar answered Sep 30 '22 05:09

Jonathan Crosmer