This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Created with IntelliJ IDEA. | |
* User: Вадим | |
* Date: 12.10.13 | |
* Time: 17:58 | |
* To change this template use File | Settings | File Templates. | |
*/ | |
public class main { | |
public static void main (String[] args){ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Collections.Generic; | |
using MonoTouch.Dialog; | |
using System.Xml; | |
namespace testTask | |
{ | |
public class XmlParser | |
{ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Xamarin Studio | |
Version 5.7 (build 660) | |
Xamarin.iOS | |
Version: 8.6.0.41 (Enterprise Edition) | |
#1 ViewRenderer Problem | |
//.... Dont work correctly. When happenning dispose ViewRendere can't find control and throw NullReferenceException | |
override void OnElementChanged(ElementChangedEventArgs<View> e) | |
{ | |
base.OnElementChanged(e); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.IO; | |
namespace Rename | |
{ | |
class MainClass | |
{ | |
static DirectoryInfo d = new DirectoryInfo(Directory.GetCurrentDirectory()); | |
static FileInfo[] Files = d.GetFiles("*.png"); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
go dev |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package docker | |
import ( | |
"context" | |
"io" | |
"github.com/ory/dockertest" | |
"github.com/ory/dockertest/docker" | |
) |