Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
T

Tariq A Karim

@Tariq A Karim
About
Posts
4
Topics
0
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Reading external application field value...
    T Tariq A Karim

    There are multiple ways you can do it: a) .Net Remoting b) Windows Communication Foundation c) Web Service d) WMI events

    Tariq A Karim http://moplah.blogspot.com/

    .NET (Core and Framework)

  • Could we have VS.NET 2005 and 2008 onthe same machine (pc or notebook) ? [modified]
    T Tariq A Karim

    I have both the versions on my machine. But just to let you know that in Visual Studio 2008, you can set the target framework to .Net 2.0 which is same as Visual Studio 2005 framework.

    Tariq A Karim http://moplah.blogspot.com/

    .NET (Core and Framework) csharp visual-studio help question

  • Reference library programatically
    T Tariq A Karim

    There is a complete library in .Net called Reflection that allows you to query a type or create an instance without referencing the assembly on compile. I would suggest you to go through the Reflection namespace and esp Assembly class. (http://msdn.microsoft.com/en-us/library/system.reflection.aspx[^]

    Tariq A Karim http://moplah.blogspot.com/

    .NET (Core and Framework) csharp dotnet help question

  • Calling an Extension method from another Extension method (C# 3.0)
    T Tariq A Karim

    Yes you can an extension method within inside an extension method. public static class ExtensionClass1 { public static string Info<T> (this T obj) where T:class { return obj.MoreInfo<T>() + ":" + obj.GetType().Name; } } public static class ExtensionClass2 { public static string MoreInfo<T>(this object obj) where T: class { return obj.GetType().Assembly.FullName; } }

    Tariq A Karim http://moplah.blogspot.com/

    C# csharp com question
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups