T Tim Nelson May 23, 2005 #1 when System.Type.GetType("System.Boolean") works. Is there some way to get this type at runtime? Thanks,
when System.Type.GetType("System.Boolean") works. Is there some way to get this type at runtime? Thanks,
M Mattias Sjögren May 23, 2005 #2 Tim, Is there some way to get this type at runtime? Click to expand... Sure, but you have to specify the full assembly qualified type name, like Type.GetType("System.Xml.XmlElement, System.Xml, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089") Or just reference the System.Xml assembly and use the typeof operator. Mattias
Tim, Is there some way to get this type at runtime? Click to expand... Sure, but you have to specify the full assembly qualified type name, like Type.GetType("System.Xml.XmlElement, System.Xml, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089") Or just reference the System.Xml assembly and use the typeof operator. Mattias