Format:
Recent snippets matching tags of value
return members == null ? 0 : members.Count;
18 Views
no comments
CREATE PROC SearchAllTables ( @SearchStr nvarchar(100) ) AS BEGIN CREATE TABLE #Results (ColumnName nvarchar(370), ColumnValue nvarchar(3630)) SET NOCOUNT ON
62 Views
no comments
CREATE FUNCTION [dbo].[udf_StringToTable] ( @string VARCHAR(MAX), @delimiter CHAR(1) ) RETURNS @output TABLE( data VARCHAR(256) ) BEGIN
109 Views
no comments
using System; using System.Windows.Controls; using System.Windows.Data; namespace ContosoSales { /// <summary> /// Step down the opacity of something based on the length of the /// text entered into the TextBox for which this watermark is used. /// </summary>
229 Views
no comments
We have implemented the OpenID in our application. Following is the code snippet. var response = openid.GetResponse(); Sometimes it is NOT working in Internet Explorer on some machines. We are getting the "response" value NULL. And because of that user is not able to get into the application.
147 Views
no comments
[DebuggerDisplay("{value}", Name="[{key}]", Type="")] internal class KeyValuePairs { // Fields [DebuggerBrowsable(DebuggerBrowsableState.Never)] private object key; [DebuggerBrowsable(DebuggerBrowsableState.Never)] private object value; // Methods
201 Views
no comments
[Serializable, StructLayout(LayoutKind.Sequential)] public struct KeyValuePair<TKey, TValue> { private TKey key; private TValue value; public KeyValuePair(TKey key, TValue value) { this.key = key; this.value = value; }
206 Views
no comments
Subscribe
Discuss
What's new
What is it
New Snippet
Recent Snippets
My Snippets
Web Code
Search
