Search Results

4
votes
11answers
492 views

Learning OOP well…

What is the correct way of learning OOP deeply? …
0
votes
3answers
160 views

Looking for Object-Oriented Programming journal

I'm looking for a journal which discusses OOP and modern programming technologies. Can anyone recommend any? …
0
votes
2answers
100 views

Oh, virtual, new,… modifiers in c# have different rules…so what is the best way or best-practices for learning OOP rules and use them easily…?

I found C# very interesting...but unfortunately (or fortunately ! ) it has many features to implement OOP rules....they have different machanisms and make me sometimes confused.... so what …
0
votes
2answers
32 views

based on what logical reasons, virtual and new modifiers have diffrent results in inheritance and polymorphism issues?

Hi ... I know that when we have a virtual function in our own base class, then by overriding it in a derived class and considering casting when variable declaration, we have different result with c …
1
vote
3answers
112 views

Practical usage of new (modifier) functions?

Hi... What's the Practical usage of new (modifier) functions? …
0
votes
4answers
61 views

getting only name of employee by his ID. So one static class with only one method?!

Hi I need to get name of an employee by his ID by querying to DB. It seems that need a class. But a class with only one method.....is it good idea or what else do you suggest? …
0
votes
3answers
176 views

When should we create a static class?

How can we distinguish to create a class which is static? …
0
votes
2answers
77 views

Business Layer, Data Access Layer. Is there any resource to learn how to make relation between Business layer classes with Data Access layer classes?

Business Layer, Data Access Layer. Is there any resource to learn how to make relation between Business layer classes with Data Access layer classes? …
1
vote
3answers
79 views

Is there any constraint to specify the access specifier of members of a class when we have specified access specifier of the class?

Hi Suppose that we have a class named class1. The class1 has several properties and methods and we have decided to specify the access specifier of class1 as internal. Now, can we se …
1
vote
4answers
179 views

Object Serialization and Deserialization?

Hi all. What are Object Serialization and Deserialization? What difference does Serialization have with normal techniques like reading an object's properties and then filling a DataRow's co …