January 13th, 2013 07:30 AM
string stmp = "\n<rs:data ItemCount=\"6\" xmlns:rs=\"urn:schemas-microsoft-com:rowset\">\n <z:row _x041a__x043b__x0438__x0435__x043d__x0442___x043a__x043e__x0434_=\"16440042770нс\"...
January 24th, 2011 07:16 PM
01.Response.Buffer = true;
02. Response.AddHeader("Content-Disposition", string.Format("attachment;filename={0}", documentFileName ));
03. ...
March 30th, 2010 04:58 PM
If, for example, I know the size of returned data, is it possible to avoid Marshal.Copy()?
March 30th, 2010 01:55 PM
[DllImport("PlainCLibrary.dll")]
internal static extern IntPtr TestDoubleArray(double[] dbl, long len);
The underlying TestDoubleArray() returns double*. I'd like to have it converti=ed...
January 30th, 2010 01:14 AM
Regardless of the nesting level in that particular w:tbl. For example:
<w:p w:rsidR="AAAAAA">
</w:p>
...
<w:tbl>
<w:tblPr>
<w:tblStyle w:val="TableGrid"/>
January 15th, 2010 01:32 AM
global.asax:
Global.asax.vb
Imports System.Web.SessionState
Namespace AdamItiel
Public Class GlobalApp
December 3rd, 2009 01:13 PM
My WCF:
[ServiceContract]
public interface IWorkbookService
{
[OperationContract]
DataTable GetDownpayments(KeyValuePair<int, string> sgm);
}
November 21st, 2009 01:14 AM
XML:
<?xml version="1.0" encoding="utf-8" ?>
<TTTTModel>
<TTTTClass>
<TTTTType>Deployment</TTTTType>
<TTTTDate>2009-09-30T00:00:00-07:00</TTTTDate>
</TTTTClass>
...
November 18th, 2009 04:25 PM
I need to write a XPath for getting the closest sibling to the current node. It should return exactly 1 element. How to write it?
November 3rd, 2009 03:35 PM
XML:
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<w:document xmlns:ve="http://schemas.openxmlformats.org/markup-compatibility/2006"...
August 11th, 2009 03:29 PM
the regex:
# Region
<tr>
\s*<td\s+class="grey11">Region:</td>\s*
<td\s+class="b11\s+b">(?<Region>.+?(?=</td>))</td>
\s*
</tr>
\s*
August 4th, 2009 07:36 PM
using System;
using System.ComponentModel ;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading;
using System.Reflection;
namespace Retriever
November 21st, 2008 04:17 PM
<asp:LoginView ID="LoginStatus1" runat="server" OnViewChanging="LoginView1_ViewChanging">
<LoggedInTemplate>
...