TIP: A Quick Way to Write Public Properties in C#

CodeGuru content and product recommendations are editorially independent. We may make money when you click on links to our partners. Learn More.

Assume that you have a set of member variables declared as:

private string mAgencyName;
private string mInvoiceNumber;
private string mCustomerNumber;
private string mAddress1;
private string mAddress2;
private string mSuburb;
private string mPostcode;
private string mState;
private string mABN;

Just copy and paste this declaration block, highlight it, and press Control+H (find and replace). Ensure that regular expressions is turned on, and Applies to “Selection” is set. Type the following into the find and replace boxes respectively:

Find:

private {.+} m{[^ ]+};

Replace: (one line)

public 1 2ntt{ntttget { return m2; }ntttset 
       { m2 = value; }ntt}n

This will create public get and set commands for all of the variables. It should be fairly easy to manipulate the expressions above to work with your individual naming conventions.

That was the tip; now, what’s it actually doing? Well, there’s already a plethora of information on regular expressions on the net. If nothing else, this tip should show you some of what they can do. If you are interested in learning more about them, check out Microsoft’s Regex Site at MSDN Regex Guide.

In this example, you start by finding the following string:

private {.+} m{[^ ]+};

This looks for the word “private” followed by a space. The {.+} tells the regex parser to look for any character (the .) one or more times (the +). The parentheses around it tell it to call this match Group 1.

The next part of the regex looks for a space followed by the letter “m” (assuming you have called your member variables mSomething). After this, you look for {[^ ]+}. Once again, you are defining a group—Group 2. You then are saying to look for any character in the following set [^ ]. Because the caret (^) is the first character, this tells regex to find any character NOT contained in the []; in this case, search for all charcters that are not a space. Once again, you want at least one character in this group. Finally, you look for a “;” to indicate the end of the line.

The replace syntax looks complicated, but is actually simpler than the find. It looks like this:

public 1 2ntt{ntttget { return m2; }ntttset 
       { m2 = value; }ntt}n

You are telling regex to replace what you have found with the string above. Regex will interpret escape sequences (x) as characters or groups of characters. This is where your group definitions come in. Take the replace string above and change all of the escape sequences with the following:

  • 1: Group 1
  • 2: Group 2
  • n: New line
  • t: Tab
  • {: { character (you need to put a in front of special characters so regex knows you want that character and not a group.
  • }: } character

So, Group 1 becomes the variable type and Group 2 becomes the variable name.

Simple, huh?

More by Author

Get the Free Newsletter!

Subscribe to Developer Insider for top news, trends & analysis

Must Read