Table of Contents

Class ObjectHelper

Namespace
CMS.DataEngine
Assembly
CMS.DataEngine.dll

Object manipulation methods.

public class ObjectHelper : CoreMethods
Inheritance
object
ObjectHelper
Inherited Members
Extension Methods

Methods

BuildFullName(string, string, string)

Builds the full name from the given names.

public static string BuildFullName(string first, string second, string separator = ".")

Parameters

first string

First name

second string

Second name

separator string

Separator

Returns

string

ParseFullName(string, out string, out string, string)

Parses the full name in format "something.whatewer.abc" so that "something.whatever" is considered the first part, and "abc" second part.

public static bool ParseFullName(string fullName, out string firstPart, out string secondPart, string delimiter = ".")

Parameters

fullName string

Given full name

firstPart string

First part

secondPart string

Second part

delimiter string

Fullname delimiter

Returns

bool