C# programming and Visual Studio usage tips (Part 2)
If you found this article through a search engine, I suggest you read the first article in this series. This is the second article in this series. Today I will bring you richer C# and Visual Studio programming. Let’s take a look at the techniques.
1. DataTable.HasRows
It does not belong to any framework, but it is easy to imitate such a method through extension methods. It does not eliminate the original check whether the data table object is empty or has the number of rows. code, but it can simplify the application code, here is a code snippet:
<CODE> public static bool HasRows(this DataTable dataTable) { return dataTable.IsNull() ? false : (dataTable.Rows.Count > 0); } public static bool IsNull(this object o) { return (o == null); } To use: If(dataTable.HasRows()) { … } </CODE>
Other rules are still the same as for extension methods.
2. ToTitleCase
This method can convert the first letter of each word to uppercase and the remaining letters to lowercase. For example, "look below for a sample" will be converted to "Look Below For A Sample", TextInfo is part of the System.Globalization namespace, but it has the following problems:
Current Culture
If the input string is all uppercase
The following extension method takes both of these flaws into account.
<CODE> public static string ToTitleCase(this string inputString) { return Thread.CurrentThread.CurrentCulture.TextInfo. ToTitleCase((inputString ?? string.Empty).ToLower()); } </CODE>
3. Explicit and implicit interface implementation
Is this important? Yes, very important, do you know the syntax difference between them? In fact, there are fundamental differences between them. The implicit interface implementation on a class defaults to a public method, which can be accessed on objects or interfaces of the class. The explicit interface implementation on the class is a private method by default, which can only be accessed through the interface, not through the object of the class. The following is a sample code:
<CODE> INTERFACE public interface IMyInterface { void MyMethod(string myString); } CLASS THAT IMPLEMENTS THE INTERFACE IMPLICITLY public MyImplicitClass: IMyInterface { public void MyMethod(string myString) { /// } } CLASS THAT IMPLEMENTS THE INTERFACE EXPLICITLY public MyExplicitClass: IMyInterface { void IMyInterface.MyMethod(string myString) { /// } } MyImplicitClass instance would work with either the class or the Interface: MyImplicitClass myObject = new MyImplicitClass(); myObject.MyMethod(""); IMyInterface myObject = new MyImplicitClass(); myObject.MyMethod(""); MyExplicitClass would work only with the interface: //The following line would not work. MyExplicitClass myObject = new MyExplicitClass(); myObject.MyMethod(""); //This will work IMyInterface myObject = new MyExplicitClass(); myObject.MyMethod(""); </CODE>
4. Auto attribute
It is the best way to replace an attribute containing one public and two private members.
Press the Tab key twice (you need to enable the code snippet function), and an Auto attribute will be created. Press the Tab key again to get a name for the Auto attribute. The following code
<CODE> private double _total; public double Total { get { return _total; } set { _total = value; } } </CODE>
becomes
<CODE> public double Total { get; set; } </CODE>
Note that you can still apply access specifiers according to your design, and the compiler should create private member variables for you.
5. Powerful Path.Combine
Path.Combine eliminates trailing slashes and path-related problems with its powerful functions. It is simple and easy to use, making the path string more continuous. It contains A string path parameter.
You don’t have to worry about valid delimiters or spaces in the path, and you don’t have to deal with string concatenation when merging paths.
6. A quick way to write the "Override" method in a class
Enter override in the code editor, press the space bar, and you will see a list of class-based overrides method, as shown in Figure 2.
Figure 1 List of overridable methods
7. Using extended configuration files
Thanks app.config (for applications) and web.config configuration files, allowing us to handle complex application-level settings, but we still have to deal with various issues faced by different environment settings, here refers to the settings of development, test and production environments.
We have to revert to a specific environment in order to analyze, test or debug parts of the code, and in this process, every setup and adjustment is tedious.
For example, each restore may require resetting the ConnectionStrings (connection string). Now you can use the ConfigSource property to solve this problem through an external file reference. For example, the following code references a development.config external configuration file.
<connectionStrings configSource="configs\ development.config" />
You can also use this useful property in the AppSettings settings section.
8. Overcoming the limitations of the String.Split method
String.Split is the most ideal method to separate strings, but as far as we know, it also has some limitations, such as the inability to use "|| " or "::" characters must use a unique single character on the keyboard as a separator. This shortcoming can be overcome by using the Split method provided by the RegEx library. The following code shows the use of RegEx Split to separate a "||" Separate strings.
<CODE> string delimitedString = "String.Split || RegEx.Split"); string[] ouputString = System.Text.RegularExpressions.Regex.Split( delimitedString, , System.Text.RegularExpressions.Regex.Escape("||")); </CODE>
9. Quick switching between HTML code view and design view of elements (and vice versa)
When designing applications, we spend time in IDE I have a lot of time, most of which is spent on HTML content and design view. Visual Studio 2010 provides the function of quickly switching between design view and HTML code.
If you are in HTML view, locate the element you want to view in Design view, and then switch to Design view, the element you want to view should be selected. Additionally, the Properties window should now show Properties of the selected element.
Similarly, when you select an element in design view and then switch to code view, the HTML code corresponding to the element you selected should be highlighted.
10. Quickly search data in the database
Although the data table supports the Find and Select methods to select rows, they are not as easy to use as the DataView method. DataView provides a FindRows method, which can Uses an index created on the sort column, so it's faster.
I hope these tips can help you save valuable programming time, give it a try!
For more C# programming and Visual Studio usage tips (Part 2), please pay attention to the PHP Chinese website!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics



The usage methods of symbols in C language cover arithmetic, assignment, conditions, logic, bit operators, etc. Arithmetic operators are used for basic mathematical operations, assignment operators are used for assignment and addition, subtraction, multiplication and division assignment, condition operators are used for different operations according to conditions, logical operators are used for logical operations, bit operators are used for bit-level operations, and special constants are used to represent null pointers, end-of-file markers, and non-numeric values.

In C, the char type is used in strings: 1. Store a single character; 2. Use an array to represent a string and end with a null terminator; 3. Operate through a string operation function; 4. Read or output a string from the keyboard.

In C language, special characters are processed through escape sequences, such as: \n represents line breaks. \t means tab character. Use escape sequences or character constants to represent special characters, such as char c = '\n'. Note that the backslash needs to be escaped twice. Different platforms and compilers may have different escape sequences, please consult the documentation.

In C language, the main difference between char and wchar_t is character encoding: char uses ASCII or extends ASCII, wchar_t uses Unicode; char takes up 1-2 bytes, wchar_t takes up 2-4 bytes; char is suitable for English text, wchar_t is suitable for multilingual text; char is widely supported, wchar_t depends on whether the compiler and operating system support Unicode; char is limited in character range, wchar_t has a larger character range, and special functions are used for arithmetic operations.

The difference between multithreading and asynchronous is that multithreading executes multiple threads at the same time, while asynchronously performs operations without blocking the current thread. Multithreading is used for compute-intensive tasks, while asynchronously is used for user interaction. The advantage of multi-threading is to improve computing performance, while the advantage of asynchronous is to not block UI threads. Choosing multithreading or asynchronous depends on the nature of the task: Computation-intensive tasks use multithreading, tasks that interact with external resources and need to keep UI responsiveness use asynchronous.

In C language, char type conversion can be directly converted to another type by: casting: using casting characters. Automatic type conversion: When one type of data can accommodate another type of value, the compiler automatically converts it.

There is no built-in sum function in C language, so it needs to be written by yourself. Sum can be achieved by traversing the array and accumulating elements: Loop version: Sum is calculated using for loop and array length. Pointer version: Use pointers to point to array elements, and efficient summing is achieved through self-increment pointers. Dynamically allocate array version: Dynamically allocate arrays and manage memory yourself, ensuring that allocated memory is freed to prevent memory leaks.

The char array stores character sequences in C language and is declared as char array_name[size]. The access element is passed through the subscript operator, and the element ends with the null terminator '\0', which represents the end point of the string. The C language provides a variety of string manipulation functions, such as strlen(), strcpy(), strcat() and strcmp().
