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 MonoTouch.UIKit; | |
using System.Collections.ObjectModel; | |
using System.Collections.Specialized; | |
using MonoTouch.Foundation; | |
using System.Collections; | |
namespace ObservableTableView | |
{ | |
public class RowSelectedEventArgs : EventArgs { |
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
diff --git a/extras/MonoDevelop.IPhone/MonoDevelop.IPhone/IPhoneProject.cs b/extras/MonoDevelop.IPhone/MonoDevelop.IPhone/IPhoneProject.cs | |
index c0010f1..a591e12 100644 | |
--- a/extras/MonoDevelop.IPhone/MonoDevelop.IPhone/IPhoneProject.cs | |
+++ b/extras/MonoDevelop.IPhone/MonoDevelop.IPhone/IPhoneProject.cs | |
@@ -516,13 +516,18 @@ namespace MonoDevelop.IPhone | |
return; | |
} | |
- if (String.IsNullOrEmpty (MainNibFile) && Path.GetFileName (e.ProjectFile.FilePath) == "MainWindow.xib") { | |
- MainNibFile = e.ProjectFile.FilePath; |
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
public class DropboxCredentials { | |
public string Email { get; set; } | |
public string Token { get; set; } | |
public string TokenSecret { get; set; } | |
public string DisplayName { get; set; } | |
public string Uid { get; set; } | |
public string LastDirectory { get; set; } | |
public DropboxCredentials() { | |
Email = ""; |
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 NUnit.Framework; | |
namespace DevSearchTest | |
{ | |
class Identifier | |
{ | |
public static string[] Separate(string rawId) | |
{ |
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 System.Drawing; | |
using System.Linq; | |
using MonoTouch.CoreAnimation; | |
using MonoTouch.CoreGraphics; | |
using MonoTouch.UIKit; | |
namespace ScrollViewExperiments | |
{ |
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 System.Data; | |
using System.Reflection; | |
using System.Text; | |
using System.ComponentModel.DataAnnotations; | |
using System.Linq; | |
namespace CircuitGallery | |
{ |
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
// | |
// Copyright (c) 2009-2010 Krueger Systems, Inc. | |
// | |
// Permission is hereby granted, free of charge, to any person obtaining a copy | |
// of this software and associated documentation files (the "Software"), to deal | |
// in the Software without restriction, including without limitation the rights | |
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
// copies of the Software, and to permit persons to whom the Software is | |
// furnished to do so, subject to the following conditions: | |
// |
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
var CurrentAssembly = Assemblies["CircuitWebLib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null"];CurrentAssembly.TypeDefs["Circuit.CirSim"] = (function(){ | |
var Ret = {};var Assembly = CurrentAssembly;var oA = Assembly.References.cA();var kA = GetTypeDef(oA, "System.Double");var kB = GetInstanceDef(oA, "System.Nullable`1", [kA]);var kC = GetTypeDef(Prelude, "Microsoft.LiveLabs.Volta.Prelude.RuntimeHelpers");var kD = GetTypeDef(Assembly, "System.Drawing.Size");var kE = GetTypeDef(Assembly, "System.Drawing.Rectangle");var kF = GetTypeDef(Assembly, "System.Drawing.PointF");var kG = GetTypeDef(oA, "System.Object");var kH = GetTypeDef(oA, "System.Object");var kI = GetTypeDef(oA, "System.DateTime");var lA = GetTypeRef(oA, "System.Action");var lB = GetTypeRef(oA, "System.Void");var lC = GetInstanceRef(GetTypeRef(oA, "System.Action`1"), [lA]);var lD = GetTypeRef(oA, "System.Boolean");var lE = GetTypeRef(oA, "System.Int32");var lF = GetTypeRef(oA, "System.Double");var lG = GetTypeRef(oA, "System.Int64");var lH = |
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 System.Linq; | |
using MonoTouch.Foundation; | |
namespace System.Threading.Tasks | |
{ | |
public class UIKitScheduler : NSRunLoopScheduler | |
{ | |
protected override void QueueAction (NSAction action) |
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
console.log("<!DOCTYPE html>"); | |
console.log("<html>"); | |
console.log("<head>"); | |
console.log("<title>JavaScript Reference</title>"); | |
console.log("</head>"); | |
console.log("<body>"); | |
var fs = require("fs"); | |
var FILES = ["apinatives.js", |
OlderNewer