I am looking for opinions from experts that have written software consumed internationally. I would like to understand the best practices people have employeed at each logical softare layer (Data (rdbms), Business (middleware), User Interface).
Thanks for any help you can give.
Don’t
string foo = "Page " + currentPage + " of " + totalPages;
Do
string foo = string.Format("Page {0} of {1}", currentPage, totalPages);
Why? Word Order Matters.
<value>Page {0} of {1}</value>
<value>{1}ページ中の第{0}ページ</value>
Nothing is sacred in the UI Even something as fundamental as showing green for positive numbers and red for negative numbers is fair game.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With