Click here to Skip to main content
15,887,307 members

Comments by Ganesh_verma (Top 27 by date)

Ganesh_verma 30-Jul-18 8:11am View    
this is working fine if same dll not available into gac folder of machine
Ganesh_verma 30-Jul-18 8:10am View    
I have created the instance as below
private static volatile LyncClient lyncObj;
        /// <summary>   The lock. 
 internal static readonly object _lock = new object();

public static LyncClient LyncObj
        {
            get
            {
                if (lyncObj == null)
                {
                    lock (_lock)
                    {
                        if (lyncObj == null)
                        {
                            while (!WaitForLyncStart())
                            {
                                Thread.Sleep(1000);
                            }
                            lyncObj = LyncClient.GetClient();
                        }
                    }
                }
                return lyncObj;
            }
        }
Ganesh_verma 20-Dec-14 9:09am View    
I am using WSDL validation that accept only regular expression fro validation that's the region I need regex expression.
Ganesh_verma 20-Dec-14 8:53am View    
Thanks for your time but it is not workinng
Ganesh_verma 19-Dec-14 11:39am View    
I need regular expression not this Please provide the expression