‘C#’ అనే వర్గంలోని టపాలు
C#
రాసినది paanis పై మే 26, 2007
C#
Generics
http://msdn2.microsoft.com/en-us/library/ms379564(VS.80).aspx
.Net 3.0
http://weblogs.asp.net/scottgu/archive/2007/03/30/slides-from-my-asp-net-connections-talks-wpf-e-linq-and-asp-net-tips-tricks.aspx
http://blogs.msdn.com/adamhems/archive/2007/04/10/creating-compelling-browser-based-applications-wpf-e.aspx
WPF
http://mehranikoo.net/CS/default.aspx
BinaryTree
http://msdn2.microsoft.com/en-us/library/ms379572(VS.80).aspx
Enterprise library videos
http://www.codeplex.com/entlib/Wiki/View.aspx?title=Videos&referringTitle=Home
http://www.dotnetjunkies.com/WebLog/adlaim/archive/2007/04/11/222403.aspx
వర్గాలు C# | Leave a Comment »
Shortcuts in Visual Studio development
రాసినది paanis పై ఏప్రియల్ 8, 2007
|
Visual Database Tool Shortcuts for Working with the Database Designer and Query Designer |
||
|
COMMAND |
SHORTCUT |
DESCRIPTION |
|
Database.Run |
Ctrl+E |
Runs the currently active database object. |
|
Database.RunSelection |
Ctrl+Q |
Runs the current selection in the SQL editor. |
|
Database.StepInto |
Alt+F5 |
Steps into Debug mode for the currently active database object. |
|
Query.Run |
Ctrl+R |
Executes the query. Available only in the Query Designer. |
|
View.Diagram |
Ctrl+1 |
Displays the Diagram pane of the Query Designer. Available only in the Query Designer. |
|
View.Grid |
Ctrl+2 |
Displays the Grid pane of the Query Designer. Available only in the Query Designer. |
|
View.Results |
Ctrl+4 |
Displays the Results pane of the Query Designer. Available only in the Query Designer. |
|
View.SQL |
Ctrl+3 |
Displays the SQL pane of the Query Designer. Available only in the Query Designer. |
|
Debugging Shortcuts |
||
|
COMMAND |
SHORTCUT |
DESCRIPTION |
|
Debug.Autos |
Ctrl+Alt+V, A |
Displays the Auto window to view the values of variables currently in the scope of the current line of execution within the current procedure. |
|
Debug.BreakAll |
Ctrl+Alt+Break |
Temporarily stops execution of all processes in a debugging session. Available only in Run mode. |
|
Debug.Breakpoints |
Ctrl+Alt+B |
Displays the Breakpoints dialog box, where you can add and modify breakpoints. |
|
Debug.CallStack |
Ctrl+Alt+C |
Displays the Call Stack window to display a list of all active procedures or stack frames for the current thread of execution. Available only in Run mode. |
|
Debug.ClearAllBreakpoints |
Ctrl+Shift+F9 |
Clears all of the breakpoints in the project. |
|
Debug.Disassembly |
Ctrl+Alt+D |
Displays the Disassembly window. |
|
Debug.EnableBreakpoint |
Ctrl+F9 |
Sets a breakpoint at the current line of code. |
|
Debug.Exceptions |
Ctrl+Alt+E |
Displays the Exceptions dialog box. |
|
Debug.Immediate |
Ctrl+Alt+I |
Displays the Immediate window, where you can evaluate expressions and execute individual commands. |
|
Debug.Locals |
Ctrl+Alt+V, L |
Displays the Locals window to view the variables and their values for each procedure in the current stack frame. |
|
Debug.Memory1 |
Ctrl+Alt+M, 1 |
Displays the Memory 1 window to view large buffers, strings, and other data that do not display clearly in the Watch or Variables window. |
|
Debug.Memory2 |
Ctrl+Alt+M, 2 |
Displays the Memory 2 window to view large buffers, strings, and other data that do not display clearly in the Watch or Variables window. |
|
Debug.Memory3 |
Ctrl+Alt+M, 3 |
Displays the Memory 3 window to view large buffers, strings, and other data that do not display clearly in the Watch or Variables window. |
|
Debug.Memory4 |
Ctrl+Alt+M, 4 |
Displays the Memory 4 window to view large buffers, strings, and other data that do not display clearly in the Watch or Variables window. |
|
Debug.Modules |
Ctrl+Alt+U |
Displays the Modules window, which allows you to view the .dll or .exe files used by the program. In multiprocess debugging, you can right-click and select Show Modules for All Programs. |
|
Debug.NewBreakpoint |
Ctrl+B |
Inserts or clears a breakpoint in the current line of code. |
|
Debug.QuickWatch |
Ctrl+Alt+Q |
Displays the Quick Watch dialog box with the current value of the selected expression. Available only in Break mode. Use this command to check the current value of a variable, property, or other expression for which you have not defined a watch expression. |
|
Debug.Registers |
Ctrl+Alt+G |
Displays the Registers window, which displays registers content for debugging native code applications. |
|
Debug.Restart |
Ctrl+Shift+F5 |
Terminates a debugging session, rebuilds, and then starts running the application from the beginning. Available in Break and Run modes. |
|
Debug.RunningDocuments |
Ctrl+Alt+N |
Displays the Running Documents window that shows the set of documents that you are in the process of debugging. Available in Run mode. |
|
Debug.RunToCursor |
Ctrl+F10 |
In Break mode, resumes execution of your code from the current statement to the selected statement. The Current Line of Execution margin indicator appears in the Margin Indicator bar. In Design mode, starts the debugger and executes your code to the cursor location. |
|
Debug.SetNextStatement |
Ctrl+Shift+F10 |
Sets the execution point to the line of code you choose. |
|
Debug.ShowNextStatement Debug.Start |
Alt+NUM * (asterisk on the number keypad) F5 |
Highlights the next statement to be executed. Automatically attaches the debugger and runs the application from the startup project specified in the Project Properties dialog box. Changes to Continue if in Break mode. |
|
Debug.StartWithoutDebugging Debug.StepInto |
Ctrl+F5 F11 |
Runs the code without invoking the debugger. Executes code one statement at a time, following execution into function calls. |
|
Debug.StepOut |
Shift+F11 |
Executes the remaining lines of a function in which the current execution point lies. |
|
Debug.StepOver |
F10 |
Executes the next line of code, but does not follow execution through any function calls. |
|
Debug.StopDebugging |
Shift+F5 |
Stops running the current application in the program. Available in Break and Run modes. |
|
Debug.This |
Ctrl+Alt+V, T |
Displays the This window (C#) or Me window (VB), which allows you to view the data members of the object associated with the current method. |
|
Debug.Threads |
Ctrl+Alt+H |
Displays the Threads window to view all of the threads for the current process and information about them. |
|
Debug.ToggleBreakpoint |
F9 |
Sets or removes a breakpoint at the current line. |
|
Debug.ToggleDisassembly |
Ctrl+F11 |
Displays the disassembly information for the current source file. Available only in Break mode. |
|
Debug.Watch1 |
Ctrl+Alt+W, 1 |
Displays the Watch 1 window to view the values of selected variables or watch expressions. |
|
Debug.Watch2 |
Ctrl+Alt+W, 2 |
Displays the Watch 2 window to view the values of selected variables or watch expressions. |
|
Debug.Watch3 |
Ctrl+Alt+W, 3 |
Displays the Watch 3 window to view the values of selected variables or watch expressions. |
|
Debug.Watch4 |
Ctrl+Alt+W, 4 |
Displays the Watch 4 window to view the values of selected variables or watch expressions. |
|
Tools.DebugProcesses |
Ctrl+Alt+P |
Displays the Processes dialog box, which allows you to debug multiple programs at the same time in a single solution. |
- The Find/Command box in the standard toolbar, provides a quick way to execute commands. Jump to the Find/Command box and put it into Command mode by pressing Ctrl+/, or click in the Find/Command box and put it into Command mode manually by typing a greater than symbol (>). Then type in a command subject, such as Edit, and IntelliSense will list the many Edit commands available for you.
- Navigate Forward and Navigate Backward options from the View menu or with shortcut keys: Ctrl+- (hyphen) to navigate backward and Ctrl+Shift+- to navigate forward
వర్గాలు C# | Leave a Comment »