|
|
private void function()
C# private void function()
Methods, fields and properties with undeclared accessibility are private.
DNN Expert posted on January 19, 2012 05:50
Check to verify if an e-mail address has been previously registered:
public bool LookupEmail(string EmailAddress)
{
try
{
 ...
[Read the rest of this article...]
DNN Expert posted on January 19, 2012 05:35

public void NameSplit(string name)
{
if (name.Length > 0)
{
// Check for a comma
if (name.IndexOf(",") >...
[Read the rest of this article...]