Questions tagged [.net-3.0]

.NET Framework 3.0, formerly called WinFX was released on 21 November 2006. There are no major architectural changes included with this release. .NET 3.0 includes WPF, WCF, WF and CardSpace

.NET Framework 3.0, formerly called WinFX was released on 21 November 2006. There are no major architectural changes included with this release; .NET Framework 3.0 uses the Common Language Runtime of .NET Framework 2.0

.NET Framework 3.0 consists of four major new components:

Windows Presentation Foundation (WPF), Windows Communication Foundation (WCF), Windows Workflow Foundation (WF) and Windows CardSpace.

Version Number: 3.0.4506.30
Release Date: 2006-11-21

More on Wikipedia

113 questions
0
votes
4 answers

ASP.NET - Learning .NET Framework 3.0 / 3.5

I would like to learn ASP.NET (Complete .NET Framework 3.0 / 3.5) and not getting time to attend training classes in any training center. Kindly let me know if you know if there are any other good alternates/options to learn. Kindly provide the…
user179181
  • 183
  • 2
  • 4
  • 8
0
votes
1 answer

ASP.NET 2.0 Website uses .NET framework 3.0 DLL

We are developing ASP.NET site in VS.NET 2005. This site is will be hosted on server which has .NET 3.0 installed and in IIS, ASP.NET 2.0 would be selected under ASP.NET tab. We would use external DLL which is being developed in VS.NET 2008 with…
Dave
  • 149
  • 1
  • 1
  • 7
0
votes
1 answer

WCF 3.0 WebService + CRUD

I'm going to create WCF web service using .net framework 3.0. This web service will expose CRUD operation to database as well as it will have some web methods that consume other web services to provide service. I have decided to create separate…
-1
votes
1 answer

C# Form disappears without being told to

So I have a form which creates another form and calls it using Form.ShowDialog(), however at some point during the run the new form disappears. I can tell it is still running as I set a timer which, when finished, shows a message box. The message…
-1
votes
2 answers

Compare difference of two lists, .Except() algorithm to replace LINQ

I used to use .Except() to compare the difference of two List in C# by using LINQ like following. List APromotionProduct= GetAPromotionProduct(PrdA); List BPromotionProduct = GetBPromotionProduct(PrdB); List tempList…
Chan Yoong Hon
  • 1,592
  • 7
  • 30
  • 71
-1
votes
3 answers

How to generate a list of number in C#

How to create a list of num from 1 to 10 Example: int[] values = Enumerable.Range(1,max).ToArray(); MessageBox.Show(values+","); The output should be: 1,2,3,4,5,6,7,8,9,10 Please help
ZeroX
  • 49
  • 1
  • 2
  • 8
-3
votes
2 answers

C#: alternative to exists or getfirstordefault

I have a class class Person { int Age; string Name; } List pList = new List(); pList.Exists(p=> p.Name == "testName"); <-- need an alternative for this. I'm using .net 3.0. As such I don't have access to getFirstOrDefault…
heyNow
  • 866
  • 2
  • 19
  • 42
-7
votes
1 answer

how to wrrite a delay code in c#

I need a method for a delay. I'm looking for something that would allow me to write code similar to this: for (;;) { hudElem.SetString(""); delay(50000); hudElem.SetString(""); …
1 2 3 4 5 6 7
8