SQL Server >
sys.objects >
Last modified stored procedures
Example
declare @nmb_days int = 10
SELECT * FROM sys.objects
WHERE TYPE = 'P'
AND DATEDIFF(D,modify_date, GETDATE()) < @nmb_days
Telerik >
RadGridView
RadGridView Telerik for Windows forms is a complex control that allows to display and edit tabular data from different data sources.
Telerik >
RadControls for WinForms
Telerik RadControls for WinForms includes more than 60 controls that you can use to easily build visually appealing, high performance Line of Business and Metro applications.
http://www.telerik.com/products/winforms.aspx
Telerik is a software company making of ASP.NET AJAX, ASP.NET MVC, Silverlight, WinForms and WPF controls and components, as well as .NET Reporting, .NET ORM , .NET CMS, Code Analysis, Mocking, Automated Testing, Team Productivity and Run-time Analytics Tools.
Reporting
Windows Forms
ASP.NET
C# > Interview Questions
Question:
It is possible to inherit in C# a base class written in VB.net?
Answer:
Yes, both are CLS-Compilant
C# Interview Questions
Question:
How can prevent a class from being inherited?
Answer:
Using keyword sealed
C# Interview Questions
Question:
What is the default access modifier for interface members?
Answer:
Public