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
-
8
of
8
DataReader VS Dataset
1960 views
6 answers
What are the differences between dataset and datareader and how do you choose with what to work ?
Static method in .NET
1819 views
4 answers
Can you override a static method in .NET ? and why ?
Pointer in .NET
1358 views
3 answers
Is it possible to create a pointer in .NET ? If yes, please write how ? If no , what id the reason ?
C# Data table filtering
1367 views
4 answers
given a data table named "dt" which of the following can be used to filter it?A. dt.Find( t => t.field = "value");B. dt.filter(fieldName,value);C. dt.Select("field=" + value);
C# Try, catch and finally blocks
1445 views
2 answers
what will be the output of the following Code?protected void Page_Load(object sender, EventArgs e) { Response.Write(ok()); Response.Write(""); ...
C# Ref and out keywords
1658 views
3 answers
please review the following class: public class Class1 { public void funcRef(ref string param) { param = "text"; } public void funcOut(out string x) { x = "text"; } }1. ...
C# Static Members
879 views
5 answers
Please review the following class:public class Class1 { public static string Member { get; set; } }which of the following code section will work:A. Class1 c = new Class1() { ...
C# functions signatures
807 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) ...