It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
in c# what is the difference between both.
I imagine single result will be one single value
whereas single row will be some form of array of values.
Related
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I have a url:
sys.php?x=23&y=20&z=9d939b
And I don't really know how to parse the 'z' value from it.
Use the HttpUtility.ParseQueryString() method, detailed here. It'll return a collection that gives you all the names (x,y,z), and the values (23, 20, 3d939b).
try:
var zValue = Request.QueryString["z"];
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 9 years ago.
I am new for this so that asking these questions..
How can I generate a Dynamic Template field in Asp.net with C#?
You can use DynamicallyTemplatedGridViewHandler implementing ITemplate interface.....For details, have a look here
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 11 years ago.
Scrape Data in C# from images
Your best bet may be to buy an OCR library. There seem to a variety of them out there.
http://www.componentsource.com/features/scanning-ocr/net-class/index.html
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 12 years ago.
As the titles says. What is a dependent property in silverlight/wpf.
There is no such thing in C#. I guess you are talking about dependency properties, which are a WPF concept. See Dependent properties and MSDN.
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 12 years ago.
Can we say generics are form of polymorphism?
Yes, generics are a form of parametric polymorphism.