learn.microsoft.com/ar-sa/training/modules/csharp-readable-code/2-choose-variable-names
1 Users
0 Comments
8 Highlights
0 Notes
Tags
Top Highlights
يجب أن تكون أسماء المتغير وصفية وذات معنى في التطبيق الخاص بك
يمكن أن تحتوي أسماء المتغير على أحرف أبجدية رقمية، وحرف شرطة سفلية
يجب أن تبدأ أسماء المتغير بحرف أبجدي أو شرطة سفلية وليس برقم
أسماء المتغير بها حساسة للحالة، وهذا يعني أن string MyValue; وstring myValue; هما متغيران مختلفان.
على سبيل المثال: bool orderComplete;، NOT bool isComplete;.
يجب أن تكون أسماء المتغير كلمة كاملة واحدة أو أكثر ملحقة معًا. لا تستخدم الاختصارات
فيما يلي بعض الأمثلة على الإعلانات المتغيرة (باستخدام أنواع البيانات الشائعة):
char userOption; int gameScore; float particlesPerMillion; bool processedCustomer;
Glasp is a social web highlighter that people can highlight and organize quotes and thoughts from the web, and access other like-minded people’s learning.