Stories recently tagged with 'Naming'

Regex matching and naming groups in C#(leniel.net)

submitted by lenielleniel(489) 2 years, 4 months ago

Let’s say you have a string and want to match individual groups of characters against that string. How would you do that? That’s the question I asked myself. The following code is the outcome of some research on how to get this done. It shows you how to capture/match and name groups of characters using a regex. read more...

add a comment |category: |Views: 30

tags: another

Naming Guidelines for Coding(jamesewelch.com)

submitted by jamesewelchjamesewelch(2275) 4 years, 5 months ago

I’ve tried to maintain a consistent set of naming rules for my code. Here’s a few guidelines that I’ve collected over the years. Contains recommending naming rules for namespaces, classes, enumerations, parameters, methods, properties, events, exception classes, and interfaces and abbreviation usage. read more...

add a comment |category: |Views: 6

tags: another