Knowledge Share
Would you like to react to this message? Create an account in a few clicks or log in to continue.

Knowledge Share

Knowledge is NOT Power IMPLEMENTATION of knowledge is Power!!!
 
HomePortalGalleryLatest imagesRegisterLog in

 

 Coding Conventions in .net

Go down 
AuthorMessage
Admin
Admin



Posts : 142
Points : 59334476
Reputation : 0
Join date : 2007-12-29
Location : Chennai

Coding Conventions in .net Empty
PostSubject: Coding Conventions in .net   Coding Conventions in .net Icon_minitimeMon Dec 31, 2007 12:07 pm

The following rules outline the usage guidelines for parameters:
• Check for valid parameter arguments. Perform argument validation for every public or protected method and property set accessor. Throw meaningful exceptions to the developer for invalid parameter arguments. Use the System.ArgumentException Class, or a class derived from System.ArgumentException. The following example checks for valid parameter arguments and throws meaningful exceptions.
[Visual Basic]
Class SampleClass
Private countValue As Integer
Private maxValue As Integer = 100

Public Property Count() As Integer
Get
Return countValue
End Get
Set
' Check for valid parameter.
If value < 0 Or value >= maxValue Then
Throw New ArgumentOutOfRangeException("value", value,
"Value is invalid.")
End If
countValue = value
End Set
End Property
Public Sub SelectItem(start As Integer, [end] As Integer)
' Check for valid parameter.
If start < 0 Then
Throw New ArgumentOutOfRangeException("start", start, "Start
is invalid.")
End If
' Check for valid parameter.
If [end] < start Then
Throw New ArgumentOutOfRangeException("end", [end], "End is
invalid.")
End If
' Insert code to do other work here.
Console.WriteLine("Starting at {0}", start)
Console.WriteLine("Ending at {0}", [end])
End Sub
End Class
[C#]
class SampleClass
{
public int Count
{
get
{
return count;
}
set
{
// Check for valid parameter.
if (count < 0 || count >= MaxValue)
throw newArgumentOutOfRangeException(
Sys.GetString(
"InvalidArgument","value",count.ToString()));
}
}

public void Select(int start, int end)
{
// Check for valid parameter.
if (start < 0)
throw new ArgumentException(
Sys.GetString("InvalidArgument","start",start.ToString()));
// Check for valid parameter.
if (end < start)
throw new ArgumentException(
Sys.GetString("InvalidArgument","end",end.ToString()));
}
}
Note that the actual checking does not necessarily have to happen in the public or protected method itself. It could happen at a lower level in private routines. The main point is that the entire surface area that is exposed to the developer checks for valid arguments.
• Make sure you fully understand the implications of passing parameters by value or by reference. Passing a parameter by value copies the value being passed and has no effect on the original value. The following method example passes parameters by value.
public void Add(object value){}
Passing a parameter by reference passes the storage location for the value. As a result, changes can be made to the value of the parameter. The following method example passes a parameter by value.
public static int Exchange(ref int location, int value){}
An output parameter represents the same storage location as the variable specifed as the argument in the method invocation. As a result, changes can be made only to the output parameter. The following method example passes an out parameter.
[DllImport("Kernel32.dll"]
public static extern bool QueryPerformanceCounter(out long value)
Back to top Go down
https://knowledgeshare.forumotion.com
 
Coding Conventions in .net
Back to top 
Page 1 of 1
 Similar topics
-
» Coding Conventions in .net
» Coding Conventions in .net
» Coding Conventions in .net
» Coding Conventions in .net
» Coding Conventions in .net

Permissions in this forum:You cannot reply to topics in this forum
Knowledge Share :: .Net-
Jump to: