Tuesday 17 May 2016

Naming Conventions C#

1.  namespace Company.Product.Module.SubModule
2.  namespace Product.Module.Component
3.  namespace Product.Layer.Module.Group

namespace Company.Product.Module.SubModule
{
public class ClientActivity
{
int counter;
string name;
string firstName;
int lastIndex;
bool isSaved;

public static string BankName;

public string Number {get; set;}

private DateTime _registrationDate;  


       public void CalculateStatistics(LogEvent logEvent)
              {
int itemCount = logEvent.Items.Count;   
}
}
public interface IShape
{
}
public interface IShapeCollection
{
}
}


No comments:

Post a Comment