Help? – Additional question updates. by HostileMakeover Ce qui était bien en étant étudiant, c’est que j’avais accès au programme MSDNAA (MicroSoft Developer Network Academic Alliance), et par la même occasion à une copie gratuite de Windows 7 32 et 64 bit. Le problème, c’est que lors de l’installation de cette version, il est impossible [...]
Posts Tagged ‘MSDN’
Changer de langue pour Windows 7 SP1 32-bit/64-bit
Posted: 1st février 2012 by Jérémy Levallois in Windows SevenTags: 32-bit, 64-bit, Langue, LP.cab, Microsoft, MSDN, MUI, Service Pack 1, SP1, Windows 7, Windows Seven
Type.GetType(string typeName) retourne null
Posted: 15th août 2011 by Jérémy Levallois in C# / XNATags: .NET, Assembly, C#, GetType, MSDN, null
J’ai eu un soucis dans un de mes projets en C# sur les Type. C# vous offre la possibilité de passer d’une chaîne de caractères à un Type, avec la fonction Type.GetType(string typeName) Type.GetType("System.Int32"); // Retourne le type d’un int Jusqu’à là, pas de soucis. Sauf que, quand on essaie avec des classes customs et [...]
Trick of the Day : How to resolve « Unreferenced formal parameter » warning ?
Posted: 6th mars 2011 by Jérémy Levallois in C/C++Tags: /W4, C/C++, C3861, C4100, macro, MSDN, Trick of the Day, Unreferenced formal parameter, UNREFERENCED_PARAMETER, Visual Studio, Warning
Warning Restricted Area LAS by planetc1 Hi ! If you compile your project in Warning Level 4 /W4 (Project > Properties > C/C++ > General > Warning Level : Level4 (/W4) in Visual Studio), you have probably seen this warning : Warning 2 warning C4100: ‘var’ : unreferenced formal parameter You think your code hasn’t [...]