Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~184 People Reached
Favorite Tags
Member Avatar for pepcoder

Step: 1I have a class Mytest [code] class MyTest { public string Name { get; set; } } [/code] Step2: Created a class Demo to use the member variables of the class myTest [code] class Demo { public void GetNames<T>(IList<myTest> info) { foreach (myTest test in info) { Console.WriteLine(test.Name.ToString()); } …

Member Avatar for sknake
0
129
Member Avatar for pepcoder

Hi, I am trying to access my project which is located on VSS from my Visual Studio 2003 which is installed on my machine but I am not able to do the same.When I have selected File->FromSourceControl option of Visual Studio all the sub menus seem to be disabled for …

0
55