Register
Sign In
Skip over navigation
Home
Add New Question
Jobs
Products
Search
Select up to 30 occupations
General
Accounting/Finance/Insurance
Administrative/Clerical
Banking/Real Estate/Mortgage Professionals
Biotech/R&D/Science
Business/Strategic Management
Creative/Design
Customer Support/Client Care
Editorial/Writing
Education/Training
Engineering
Food Services/Hospitality
Human Resources
IT/Software Development
Legal
Logistics/Transportation
Manufacturing/Production/Operations
Marketing/Product
Medical/Health
Project/Program Management
Quality Assurance/Safety
Sales/Retail/Business Development
Advanced Search
Question Information
Tags
Industries
Select up to 20 industries
Company Information
Company
Country
State (USA)
City
Displaying Results
1
-
9
of
9
for search Object oriented
Cache vs static
1567 views
22 answers
what is the different between cache and static object ?
Throw an exception in a constructor
1318 views
9 answers
hat happens if you throw an exception in a constructor???
object oriented - Inheritance
909 views
4 answers
Is it a valid code and what will be the result public class shape { public virtual void printType() { Console.Write("Im a shape "); } } public class ...
C# functions signatures
956 views
1 answers
a class contains the following functions: private long func(string a) { return 0; } private int func(string a) { return 0; } private long func(int b) ...
Object oriented derived class
667 views
8 answers
you have this function class A () { console.write("I'm class A"); } class B : A { console.write ("I'm class B"); } void main function() { try{ A a = new B(); } ...
Find all files named test.txt in the folder
690 views
8 answers
You have an object named FolderObject that get the path of a specific folder and the name of the folder. FolderObject has 2 functions : 1.find all sub folders 2.find all files ...
Interface variables
596 views
10 answers
All variables of the interface are final. why?
Abstract Class and Interface
794 views
6 answers
What is the difference between Abstract class and Interface?
Access Modifiers
569 views
0 answers
the purpose of the question is to test the knowledge about basic access modifiers in c#.