Calendario |
| l | m | m | g | v | s | d |
---|
30 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
|
|
Serialize Object to string
Serialize Object to string public static string Serialize(object o, Type T)
{
//this avoids xml document declaration
XmlWriterSettings settings = new XmlWriterSettings()
{
Indent = false,
OmitXmlDeclaration = true
};
var stream = new MemoryStream();
using (XmlWriter xw = XmlWriter.Create(stream, settings))
{
//this avoids xml namespace declarati Leggi tutto il post...
Categoria: C#
martedì, 23 gen 2018 Ore. 12.07
Change User Password in AD
Recuperare gli utenti in AD e fare il change
della pwd.
DirectoryEntry de = new
DirectoryEntry(DC_LDAP_PATH, utente,
vecchia, AuthenticationTypes.Secure);
// Recupero il nodo utente
DirectorySea Leggi tutto il post...
Categoria: C#
giovedì, 22 set 2011 Ore. 14.55
Articolo Su Agile Development
Ho trovato un articolo molto interessante sull'agile development nel blog di ciupaz:http://blogs.dotnethell.it/ciupaz/45-passi-per-diventare-%E2%80%9Cagili%E2%80%9D__15721.aspx
Alcuni dei punti che più mi piaciono e sostengo sempre:
Lavora per il risultato
Al verificarsi di un problema ci si prodiga per cercare il colpevole o per risolverlo? Ovviamente la seconda opzione. È l’approccio positivo e il risultato finale quello che conta.
Scrivi i Leggi tutto il post...
Categoria: C#
martedì, 15 dic 2009 Ore. 14.23
Stringa di Connessione per Excell
Categoria: C#
mercoledì, 03 dic 2008 Ore. 15.27
WCF Documentation
WCF Documentation
http://msdn2.microsoft.com/en-us/library/
ServiceContractAttribute
[ServiceContract()]
Indicates that an interface or a class defines a service contract in a Windows Communication Foundation (WCF) application. Use the ServiceContractAttribute attribute on an interface (or class) to define a service contract. Then use the OperationContractAttribute attribute on one or more of the class (or interface) methods to define the contract's service operations.
OperationCont Leggi tutto il post...
Categoria: C#
giovedì, 10 lug 2008 Ore. 15.56
|
Archivio Posts |
Anno 2020
Anno 2018
Anno 2015
Anno 2013
Anno 2011
Anno 2010
Anno 2009
Anno 2008
|
Statistiche |
- Views Home Page: 14.503
- Views Posts: 57.378
- Views Gallerie: 2.837
- n° Posts: 117
- n° Commenti: 1
|
|