vote up -1 vote down star

Hi friends, what the difference between the following 2 coding methods why Method 1 is called more secured. Can any one plz explain in depth why method 1 is used in corporate companies instead of telling simply security,assigning values. Or instead is there any other latest method used. Thanks.

Method 1 :

namespace caproperties
{
  class clsarthematic
  {
     int num1,num2,result;
     public int pnum1
     {
       set { num1 = value; }
     }
     public int pnum2
     {
       set { num2 = value; }
     }
     public int Presult
     {
       get { return result }
     }
     public void add()
     {
       result = num1 + num2;
     }
     public void subtract()
     {
       result = num1 - num2;
     }

     public void multiply()
     {
       result = num1 * num2;
     }
     public void divide()
     {
       result = num1 / num2;
     }
  }
}

class clsproperty2
{
  static void Main()
  {
    clsarthematic obj1 = new clsarthematic();
    console.write("Enter any two numbers : ");
    obj1.Pnum1 = convert.ToInt32(Console.ReadLine());
    obj2.Pnum2 = convert.ToInt32(Console.ReadLine());
    obj1.Add();
    Console.WriteLine("Sum is :- " + obj1.Presult");
    obj1.Subtract();
    Console.WriteLine("Sum is :- " + obj1.Presult");
    obj1.Multiply();
    Console.WriteLine("Sum is :- " + obj1.Presult");
    obj1.Divide();
    Console.WriteLine("Sum is :- " + obj1.Presult");
    Console.Read();
  }
}

Method 2 :

Namespace caproperty
{
  class clsarthematic
  {
    int num1,num2,Result;
    public void pnum1(int a)
    { num1 = a; }
    public void pnum1(int b)
    { num2 = b; }
    public void presult(int c)
    { Result= c; }
    ---------
    ---------
    ---------
    ---------
  }
}
class clsproperty2
{
  static void Main()
  {
    clsarthematic obj1 = new clsarthematic();
    console.writeline("Enter any two numbers :")
    int x = ---;
    int y = ---;
    obj1.pnum1(x);
    obj1.pnum2(y);
    obj2.Add();
    Console.WriteLine("Sum is : - " + obj1.presult);
    Console.ReadLine();
  }
}

flag
num1 x num2 - x is not an operator, I think you meant an asterisk (*). – RaYell Aug 13 at 6:21

2 Answers

vote up 1 vote down

Having code like this:

private int num1;
public int pnum1
{
   set { num1 = value; }
}

is the same as having

private int num1;
public void pnum1(int a)
{
    num1 = a;
}

in nearly every way, except for readability. Generally, for simple getters and setters, properties are preferred in C#, because C# provides nice syntactic support for writing and accessing properties. Therefore, method 1 is what you will almost always see. They do not compile to identical code, but their functionality, security and performance should be identical.

link|flag
vote up 5 vote down

What are you asking? .NET properties are backed by true methods. For example,

public int MyProperty { get{...} set{...} }

Compiles to the following two very real methods, even though you never see them. They are automatically called any time you use the property.

public int get_MyProperty() {...}
public void set_MyProperty(int value) {...}

On this note, the two items you posted are basically the same thing.

Regarding the clsarithmetic class, it violates every category of .NET coding guideline I can think of, which means I pray no one would ever use anything even resembling it.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.