System directories
Method | Result |
---|---|
Environment.getDataDirectory() | /data |
Environment.getDownloadCacheDirectory() | /cache |
Environment.getRootDirectory() | /system |
External storage directories
public class HtmlBuilder { | |
public static final String COLOR = "[color]"; | |
public enum Type{ | |
BOLD("strong"), | |
ITALIC("em"), | |
COLOR("font color=\"#"+ HtmlBuilder.COLOR + "\""), | |
SMALL("small") | |
; | |
public final String stringType; |
System directories
Method | Result |
---|---|
Environment.getDataDirectory() | /data |
Environment.getDownloadCacheDirectory() | /cache |
Environment.getRootDirectory() | /system |
External storage directories
Xamarin.Android.Support.v4
[Android SDK location]\extras\android\m2repository\com\android\support
and open the directory for the support library you need23.4.0.1
the support library version would be 23.4.0
. If you did not create a folder in[HttpPost] | |
public HttpResponseMessage CreateCustomer(string name, string billingInfo) | |
{ | |
Result<BillingInfo> billingInfoResult = BillingInfo.Create(billingInfo); | |
Result<CustomerName> customerNameResult = CustomerName.Create(name); | |
return Result.Combine(billingInfoResult, customerNameResult) | |
.OnSuccess(() => _paymentGateway.ChargeCommission(billingInfoResult.Value)) | |
.OnSuccess(() => new Customer(customerNameResult.Value)) | |
.OnSuccess( |
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using MonoTouch.MessageUI; | |
using MonoTouch.UIKit; | |
namespace MyApp | |
{ | |
public interface ICanCleanUpMyself | |
{ |