% Title % Name % Date
Displaying fragment for specified target element.
| <Window x:Class="FodyPractice.MainWindow" | |
| xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" | |
| xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" | |
| Title="MainWindow" Height="350" Width="525"> | |
| <Grid> | |
| <TextBox HorizontalAlignment="Left" Height="23" Margin="29,25,0,0" TextWrapping="Wrap" Text="{Binding FirstName}" VerticalAlignment="Top" Width="120"/> | |
| <TextBox HorizontalAlignment="Left" Height="23" Margin="199,25,0,0" TextWrapping="Wrap" Text="{Binding FamilyName}" VerticalAlignment="Top" Width="120"/> | |
| <TextBlock FontSize="40" HorizontalAlignment="Left" Margin="29,80,0,0" TextWrapping="Wrap" Text="{Binding DisplayName}" VerticalAlignment="Top" Height="60" Width="290"/> | |
| </Grid> |
| using System; | |
| using System.Linq; | |
| namespace EnumurateAdjacent | |
| { | |
| class Program | |
| { | |
| static void Main(string[] args) | |
| { | |
| var rand = new Random(); |
| using System; | |
| using System.Collections.Generic; | |
| using System.Linq; | |
| using System.Text; | |
| namespace ReducePoints | |
| { | |
| public class PointReducer | |
| { | |
| private readonly List<XYPoint> _input; |
| using System; | |
| using System.Collections.Generic; | |
| using System.Linq; | |
| using System.Text; | |
| using System.ComponentModel; | |
| using Livet; | |
| using Livet.Commands; | |
| using Livet.Messaging; | |
| using Livet.Messaging.IO; |
| using System; | |
| using System.Linq; | |
| namespace EnumurateAdjacent | |
| { | |
| class Program | |
| { | |
| static void Main(string[] args) | |
| { | |
| var input = new[] {1, 1, 2, 3, 4, 5, 5, 6, 7, 8, 9, 9, 9, 10}; |
| using java.awt; | |
| using java.io; | |
| using java.lang; | |
| using java.net; | |
| using java.util; | |
| using twitter4j; | |
| using twitter4j.auth; | |
| using System.Collections.Generic; |
| git branch -m old_branch new_branch |
| #!/bin/bash | |
| branch=$(git symbolic-ref --short HEAD) | |
| git checkout master | |
| git svn rebase | |
| git rebase master $branch |