Loading navigation

Atlas

Your web-based eye in the sky

Road maps, satellite views, directions, GPS tracking, and more! Atlas is the easiest way to find what you're looking for.

Open

Ready to get started?

Open Atlas now.
Details

Want more information?

Read more about Atlas.

Bugs

Bug tracking made stupid easy

More advanced than Post-it notes, less complicated than Team System. We've stripped the bloat from traditional bug tracking systems and dramatically simplified the whole mess.

Open

Ready to get started?

Open Bugs now.
Details

Want more information?

Read more about Bugs?

Folders

Your files, on the internets

Store your digital photos, music, movies and documents online. Work with files in your web browser like you would on your desktop.

Open

Ready to get started?

Open Folders now.
Details

Want more information?

Read more about Folders.

Gadgets

Mini-applications for Windows Live

Gadgets customize your Windows Live homepage, putting you in charge of what information you'd like to interact with.

Open

Ready to get started?

Add all of our gadgets to your Live.com page.
Details

Want more information?

Read more about the gadgets we've created for Live.com.

Scripts

JavaScript Framework designed for .NET gurus

Built for software developers, Scripts is an object oriented JavaScript framework with a programming model similar to the Microsoft .NET Framework.

Open

Ready to get started?

Open the examples and browse through the documentation.
Details

Want more information?

Read more about Scripts.

FreshLogicStudios.Scripts.Guid

Summary


Represents a globally unique identifier (GUID).
Defined in Guid.js

Constructors

FreshLogicStudios.Scripts.Guid(<String> g)
Initializes a new instance of the Guid class using the value represented by the specified string.

Parameters

  • g - A String that contains a GUID in the following format: Groups of 8, 4, 4, 4, and 12 digits with hyphens between the groups (dddddddd-dddd-dddd-dddd-dddddddddddd).

Properties

  • static final Guid Empty
    Returns a Guid whose value is all zeroes.

Methods

  • Int CompareTo(<Guid> value)
    Compares this instance to a specified Guid object and returns an indication of their relative values.

    Parameters

    • value - A Guid object to compare to this instance.

    Return Values

    A signed number indicating the relative values of this instance and value.
  • Boolean Equals(<Guid> g)
    Returns a value indicating whether this instance and a specified Guid object represent the same value.

    Parameters

    • g - A Guid object to compare to this instance.

    Return Values

    True if g is equal to this instance; otherwise, false.
  • String ToString()
    Returns a String representation of the value of this instance of the Guid class.

    Return Values

    A String formatted in this pattern: xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx where the value of the GUID is represented as a series of lower-case hexadecimal digits in groups of 8, 4, 4, 4, and 12 digits and separated by hyphens. An example of a return value is "382c74c3-721d-4f34-80e5-57657b6cbc27".
  • static Guid NewGuid()
    Generates a new globally unique identifier (GUID).

    Return Values

    A new globally unique identifier (GUID).